-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (44 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
module.exports = {
theme: {
extend: {
spacing: {
"76": "14rem",
"90": "20rem",
"96": "24rem",
"128": "40rem",
"132": "44rem",
"600px": "600px"
},
borderRadius: {
'none': '0px',
'sm': '7px',
'full': '9999px'
}
},
colors: {
bg_primary: "var(--bg-primary)",
bg_secondary: "var(--bg-secondary)",
main_primary: "var(--main-primary)",
main_secondary: "var(--main-secondary)",
light: "var(--light)",
dark: "var(--dark)",
main_focus: "var(--main-focus)",
main_focus_active: "var(--main-focus-secondary)",
green: "var(--green)",
green_active: "var(--green_active)",
blue: "var(--blue)",
blue_active: "var(--blue_active)",
red: "var(--red)",
red_active: "var(--red_active)",
yellow: "var(--yellow)",
yellow_active: "var(--yellow_active)",
},
borderRadius: {
"xl": "1rem"
}
},
variants: {
backgroundColor: ['responsive', 'hover', 'focus'],
},
plugins: []
}