-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 985 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (35 loc) · 985 Bytes
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
// eslint-disable-next-line no-undef
module.exports = {
purge: ["./src/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
fontSize: {
"sm": ["0.75rem", "normal"],
"base": "1rem",
"lg": "1.5rem",
"xl": "2rem",
"2xl": ["min(6rem, 2rem + 15vw)", "normal"]
},
colors: {
"primary": "var(--primary)",
"primary-highlight": "var(--primary-highlight)",
"secondary": "var(--secondary)",
"secondary-highlight": "var(--secondary-highlight)",
"dark": "var(--dark)",
"light": "var(--light)",
"shadow": "var(--shadow)"
},
boxShadow: {
DEFAULT: "0 0.25rem 0.5rem rgba(30, 30, 30, 0.45)"
},
extend: {
height: {
"min": "min-content"
}
}
},
variants: {
extend: {},
},
plugins: [],
};