-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
42 lines (42 loc) · 995 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
39
40
41
42
module.exports = {
variants: {
backgroundColor: ['responsive', 'hover', 'focus'],
borderColor: ['responsive', 'hover', 'focus'],
textColor: ['responsive', 'hover', 'focus'],
boxShadow: ['responsive', 'hover', 'focus'],
width: ['responsive', 'hover']
},
theme: {
extend: {
fontSize: {
'3xs': '.5rem',
'2xs': '.625rem'
},
opacity: {
12: 0.12
},
width: {
96: '24rem',
128: '32rem',
144: '36rem'
},
height: {
96: '24rem',
128: '32rem',
144: '36rem'
},
transitionProperty: {
full: 'all',
card: 'left, top, opacity, width, height'
},
transitionTimingFunction: {
'ease-in-expo': 'cubic-bezier(0.95, 0.05, 0.795, 0.035)',
'ease-out-expo': 'cubic-bezier(0.19, 1, 0.22, 1)'
}
}
},
purge: {
enabled: true,
content: ['./src/**/*.pug', './src/**/*.ts', './src/static/**/*.html']
}
};