-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
54 lines (54 loc) · 1000 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
43
44
45
46
47
48
49
50
51
52
53
54
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: [
'./pages/**/*.tsx',
'./pages/**/*.js',
'./components/**/*.tsx',
'./components/**/*.js'
],
theme: {
extend: {
colors: {
'thyellow': '#FFCB19',
'inputGray': '#eeeeee'
},
fontFamily: {
'sans': ['JTMarnie', 'Helvetica']
},
inset: {
'20': '20px',
'40': '40px'
},
height: {
'28': '7rem',
'42': '10.5rem',
'44': '11rem',
'60': '15rem',
'70': '17rem',
'128': '32rem'
},
boxShadow: {
'gradient': 'inset 5em 1em rgba(0,0,0,0.5)'
},
zIndex: {
'1': 1,
'2': 2,
'3': 3,
'4': 4,
'5': 5
},
maxHeight: {
'modal': 'calc(100vh - 100px)'
}
}
},
variants: {
extend: {
backgroundColor: ['checked']
}
},
plugins: [],
}