-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (32 loc) · 819 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (32 loc) · 819 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
backgroundColor: {
base: "var(--color-base)",
dark: "var(--color-dark)",
primary: "var(--color-primary)",
secondary: "var(--color-secondary)",
muted: "var(--color-text-muted)"
},
textColor: {
base: "var(--color-text-base)",
muted: "var(--color-text-muted)",
primary: "var(--color-primary)",
secondary: "var(--color-secondary)"
},
borderColor: {
base: "var(--color-border-base)"
},
shadowColor: {
base: "var(--color-shadow-base)"
},
minWidth: {
mobile: "350px"
}
}
},
plugins: []
};