-
Notifications
You must be signed in to change notification settings - Fork 71
/
tailwind.config.cjs
80 lines (72 loc) · 1.42 KB
/
tailwind.config.cjs
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
73
74
75
76
77
78
79
80
/** @type {import('tailwindcss').Config} */
const colors = {
black: "black",
white: "white",
transparent: "transparent",
accent: "var(--accent)",
warning: "var(--warning)",
danger: "var(--danger)",
success: "var(--success)",
}
const baseColors = [
"neutral-100",
"neutral-200",
"neutral-300",
"neutral-400",
"neutral-500",
"neutral-50",
"neutral-600",
"neutral-700",
"neutral-800",
"neutral-900",
"neutral-950",
"tinted-100",
"tinted-200",
"tinted-400",
"tinted-500",
"tinted-600",
"tinted-700",
"tinted-800",
]
const dynamicColors = generateVariants(baseColors)
function generateVariants(baseColors) {
const result = {}
baseColors.forEach(baseColor => {
const lightKey = `${baseColor}-l`
const darkKey = `${baseColor}-d`
result[baseColor] = `var(--${baseColor})`
result[lightKey] = `var(--${lightKey})`
result[darkKey] = `var(--${darkKey})`
})
return result
}
module.exports = {
content: ["./index.html", "./src/**/*.{js,svelte}"],
darkMode: "class",
safelist: ["w-4", "h-4"],
theme: {
extend: {},
zIndex: {
none: 0,
feature: 1,
nav: 2,
chat: 3,
popover: 4,
modal: 5,
toast: 6,
},
screens: {
xs: "400px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
colors: {
...colors,
...dynamicColors,
},
},
plugins: [],
}