-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (53 loc) · 1.01 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
50
51
52
53
module.exports = {
purge: {
content: [
'./src/components/**/*',
'./src/pages/**/*',
'./src/models/**/*',
],
options: {
whitelist: ['bg-red-500', 'px-4'],
whitelistPatternsChildren: [/carousel/, /html/],
},
},
theme: {
screens: {
sm: '640px',
md: '960px',
lg: '1280px',
xl: '1600px',
},
container: {
center: true,
padding: {
default: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
},
},
extend: {
colors: {
themeGray: {
default: 'EDEFF0',
100: '#f5f5f5',
200: '#f2f2f2',
300: '#c0c0c0',
400: '#e3e3e3',
500: '#808080',
600: '#555555',
700: '#444444',
800: '#333333',
},
},
},
},
variants: {
borderWidth: ['responsive', 'hover', 'focus', 'last'],
},
plugins: [],
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
};