-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
38 lines (38 loc) · 943 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
module.exports = {
future: {
removeDeprecatedGapUtilities: true
},
theme: {
extend: {
fill: (theme) => ({
red: theme('colors.red.primary')
}),
colors: {
white: '#ffffff',
blue: {
medium: '#005c98'
},
black: {
light: '#262626',
faded: '#00000059'
},
gray: {
base: '#616161',
background: '#fafafa',
primary: '#dbdbdb'
},
red: {
primary: '#ed4956'
}
},
spacing: {
'128': '32rem', // following the standard of 128 / 4 = 32
}
}
},
variants: {
extend: {
display: ['group-hover']
}
}
};