-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (40 loc) · 1.04 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
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: [],
theme: {
extend: {
colors: {
boom: {
100: '#C0C1C3',
},
},
fontFamily: {
'extra-condensed': ['Saira Extra Condensed', 'sans-serif'],
},
fontSize: {
'3xs': '0.6rem',
'2xs': '0.7rem',
xs: '0.8rem',
},
height: (theme) => ({
'screen-1/3': '33vh',
'screen-1/2': '50vh',
'screen-2/3': '66vh',
'screen-3/4': '75vh',
'screen-4/5': '80vh',
}),
minHeight: {
'screen-1/3': '33vh',
'screen-1/2': '50vh',
'screen-2/3': '66vh',
'screen-3/4': '75vh',
'screen-4/5': '80vh',
},
},
},
variants: {},
plugins: [],
};