-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (48 loc) · 1.07 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
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: [
'./pages/*.tsx',
'./pages/**/*.tsx',
'./core/**/*.tsx',
'./features/**/**/*.tsx',
],
darkMode: false, // or 'media' or 'class'
important: true,
theme: {
backgroundColor: theme => ({
...theme('colors'),
'cusGreen': '#62DE81',
'cusPink': '#F9BEBA',
'cusLightYellow': '#FFF0A4',
'cusRegularYellow': '#FFCA62',
'cusYellow': '#FFD700',
'cusDarkYellow': '#F4B740',
'cusPastelOrange': '##FFDC97',
'cusLightOrange': '#FFA753',
'cusDarkRed': '#9C4A55',
'cusRed': '#AC3B31',
'cusPurple': '#B82AFF',
'cusBrown': '#AC5B31',
}),
borderColor: theme => ({
...theme('colors'),
'cusYellow': '#FFD700',
'cusLightOrange': '#FFA753',
'cusDarkRed': '#9C4A55',
'cusBrown': '#AC5B31',
}),
borderRadius: {
'5': '5px',
'25': '25px',
'30': '30px',
'50': '50%',
}
},
variants: {
extend: {},
},
plugins: [],
}