-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
57 lines (56 loc) · 1.09 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend:{
spacing: {
'72': '18rem',
'84': '80rem',
'96': '26rem',
},
height: {
sm: '8px',
md: '330px',
lg: '500px',
xl: '700px',
},
fontFamliy:{
body:['DM Sans']
},
fontSize: {
'xs': '.75rem',
'sm': '.875rem',
'tiny': '.875rem',
'base': '1rem',
'lg': '1.125rem',
'xl': '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '2.5rem',
'6xl': '4rem',
'7xl': '5rem',
},
minHeight: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
},
borderWidth: {
DEFAULT: '1px',
'0': '0',
'2': '1.5px',
'3': '3px',
'4': '4px',
'6': '6px',
'8': '8px',
}
}
},
variants: {
extend: {},
},
plugins: [],
}