-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (56 loc) · 1.06 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
46
47
48
49
50
51
52
53
54
55
56
57
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: [],
theme: {
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
opacity: {
'0': '0',
'25': '.25',
'50': '.5',
'75': '.75',
'10': '.1',
'20': '.2',
'30': '.3',
'40': '.4',
'50': '.5',
'60': '.6',
'70': '.7',
'80': '.8',
'90': '.9',
'100': '1',
},
borderWidth: {
DEFAULT: '1px',
'0': '0',
'1': '1px',
'2': '2px',
'3': '3px',
'4': '4px',
'6': '6px',
'8': '8px',
},
extend: {
width: {
'1/2': '50%',
'half': '50%',
'1/3': '33.333333%',
'1/4': '25%',
'1/5': '20%',
'1/6': '16.666666%',
'1/7': '14.285714%',
'1/8': '12.5%',
'1/9': '11.111111%',
'1/10': '1%',
'1/16': '0.625%',
}
},
},
variants: {},
plugins: [],
};