-
Notifications
You must be signed in to change notification settings - Fork 625
/
tailwind.config.js
79 lines (78 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
const {palette} = require('@welovedevs/ui');
module.exports = {
mode: 'jit',
content: ['./src/package/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
screens: {
'2xl': { max: '1535px' },
xl: { max: '1279px' },
lg: { max: '1023px' },
md: { max: '768px' },
sm: { max: '500px' },
profileMobile: { max: '700px' }
},
spacing: {
0: '0px',
'1/2': '4px',
1: '8px',
'1.5': '12px',
2: '16px',
'2.5': '20px',
3: '24px',
'3.5': '28px',
4: '32px',
5: '40px',
6: '48px',
7: '56px',
8: '64px',
9: '72px',
10: '80px',
11: '88px',
12: '104px',
13: '112px',
14: '120px',
15: '128px',
16: '136px',
17: '144px',
18: '152px',
19: '160px',
20: '168px',
21: '176px',
22: '184px',
23: '192px',
24: '200px'
},
margin: {
0: '0px'
},
maxWidth: {
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'4/5': '80%',
'9/10': '90%'
},
width: {
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'4/5': '80%',
'9/10': '90%',
reset: 'unset'
},
colors: {
...palette,
white: '#FFF',
black: '#000'
}
}
},
variants: {
extend: {}
},
corePlugins: {
preflight: false
},
plugins: []
};