-
Notifications
You must be signed in to change notification settings - Fork 12
/
tailwind.config.js
45 lines (45 loc) · 1 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
module.exports = {
purge: [
"./pages/**/*.jsx",
"./components/**/*.jsx",
],
theme: {
container: {
padding: {
default: '1rem',
sm: '2rem',
}
},
extend: {
fontSize: {
xxs: '0.625rem'
},
boxShadow: {
outline: '0 0 0 3px rgba(255, 255, 255, 0.35)',
},
colors: {
primary: '#ff7a64',
'primary-dark': '#FF6B5C',
'primary-light': '#FE8F7D',
dark: '#242430',
altWhite: 'rgba(251, 251, 250, 0.05)'
},
container: {
center: true,
},
height: {
fit: 'fit-content',
},
maxWidth: {
xxs: '16rem'
},
},
},
variants: {
scale: ['responsive', 'hover', 'focus', 'group-hover'],
textColor: ['responsive', 'hover', 'focus', 'group-hover'],
backgroundColor: ['responsive', 'hover', 'focus', 'active', 'visited', 'disabled'],
cursor: ['responsive', 'hover', 'focus', 'active', 'visited', 'disabled'],
},
plugins: [],
}