-
Notifications
You must be signed in to change notification settings - Fork 8
/
tailwind.config.js
43 lines (43 loc) · 1.14 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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}", "*.html"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
// sans: ['arial', 'sans-serif'],
},
colors: {
skin: {
highlight: "var(--highlight-color)",
medlight: "var(--medlight-color)",
lowlight: "var(--lowlight-color)",
alt: "var(--alt-color)",
"bg-base": "var(--bg-base-color)",
"text-muted": "var(--text-muted-color)",
},
},
textColor: {
skin: {
primary: "var(--text-primary-color)",
secondary: "var(--text-secondary-color)",
muted: "var(--text-muted-color)",
// highlight: 'var(--highlight-color)',
},
},
backgroundColor: {
skin: {
base: "var(--bg-base-color)",
middleground: "var(--bg-middleground-color)",
foreground: "var(--bg-foreground-color)",
"line-divider": "var(--bg-line-divider-color)",
},
},
borderColor: {
skin: {
foreground: "var(--bg-foreground-color)",
},
},
},
},
plugins: [],
};