-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
72 lines (67 loc) · 1.43 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
module.exports = {
purge: {
enabled: true,
layers: ['components', 'utilities'],
content: [
"./pages/**/*.js",
"./pages/**/*.ts",
"./pages/**/*.jsx",
"./pages/**/*.tsx",
"./components/**/*.js",
"./components/**/*.ts",
"./components/**/*.jsx",
"./components/**/*.tsx"
],
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
borderWidth: {
'3': '3px',
'5': '5px',
'6': '6px',
},
borderRadius: {
'lg-custom': '1.125rem'
},
boxShadow: {
'xl-custom': '0 25px 50px -12px rgba(0, 0, 0, 0.5)',
'lg-custom': '0 19px 37px -9px rgba(0, 0, 0, 0.5)'
},
colors: {
'g': 'rgb(93, 198, 93)',
'r': 'rgb(202, 88, 88)',
'y': 'rgb(221, 221, 115)',
'b': 'rgb(87, 87, 199)',
'lightest': 'rgb(248, 241, 232)',
'lighter': 'rgb(210, 199, 183)',
'darkest': 'rgb(13, 22, 43)',
},
height: {
'18': '4.5rem',
'54': '13.5rem',
},
margin: {
'15': '3.75rem',
},
padding: {
'0.75': '0.1875rem',
'2.25': '0.5625rem',
},
transitionDuration: {
'0': '0ms',
},
width: {
'18': '4.5rem',
'54': '13.5rem',
},
},
},
variants: {
extend: {
borderColor: ['focus-visible'],
opacity: ['disabled'],
},
},
plugins: [],
}