-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
44 lines (43 loc) · 1005 Bytes
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
const { MEME_WIDTH } = require('./src/constants');
module.exports = {
purge: {
content: ['./src/pages/*.jsx', './src/pages/**/*.jsx', './src/components/*.jsx', './src/components/**/*.jsx'],
},
darkMode: false,
theme: {
extend: {
colors: {
'teams-purple': '#6264A7',
'teams-purple-light': '#898bc5',
'teams-bg-dark': '#201F1F',
'teams-bg-light': '#F5F5F5',
'teams-status-available': '#6BB800',
twitter: '#1DA1F2',
},
},
fontFamily: {
teams: ['Segoe UI', 'Tahoma', 'Geneva', 'Verdana', 'sans-serif'],
},
maxWidth: {
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
xs: '480px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
meme: MEME_WIDTH,
},
},
variants: {
extend: {
backgroundColor: ['disabled'],
cursor: ['disabled'],
margin: ['last'],
opacity: ['disabled'],
},
},
plugins: [],
};