-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.13 KB
/
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
45
46
47
48
49
module.exports = {
darkMode: 'class',
purge: {
content: ['./src/**/*.tsx', './src/**/*.ts', './src/**/*.js', './src/**/*.jsx'],
},
future: {
purgeLayersByDefault: true,
},
theme: {
extend: {
borderRadius: {
lg: '10px',
xl: '20px',
},
width: {
7: '1.75rem',
},
colors: {
'green-dark': '#00E7C0',
'green-light': '#00B492',
'black-75': 'rgba(0, 0, 0, 0.75)',
'white-75': 'rgba(255, 255, 255, 0.75)',
gray: {
50: '#FAFAFA',
100: '#f5f5f5',
200: '#eeeeee',
300: '#e0e0e0',
400: '#bdbdbd',
500: '#9e9e9e',
600: '#757575',
700: '#616161',
800: '#424242',
900: '#212121',
950: '#101010',
},
},
inset: {
'4': '1rem',
},
},
},
variants: {
textColor: ['group-hover', 'responsive', 'hover', 'focus', 'dark'],
borderColor: ['responsive', 'hover', 'focus', 'dark'],
display: ['responsive', 'hover', 'group-hover'],
transform: ['responsive', 'hover', 'focus']
},
plugins: [],
}