-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
63 lines (62 loc) · 1.8 KB
/
Copy pathtailwind.config.js
File metadata and controls
63 lines (62 loc) · 1.8 KB
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
/** @type {import('tailwindcss').Config} */
const config = {
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["var(--font-sans)", "var(--font-sans-stack)"],
mono: ["var(--font-mono)", "var(--font-mono-stack)"],
},
colors: {
background: "var(--bg)",
foreground: "var(--text)",
muted: "var(--text-muted)",
divider: "var(--border)",
primary: {
DEFAULT: "var(--primary)",
foreground: "var(--primary-foreground)",
},
accent: {
DEFAULT: "var(--accent)",
foreground: "var(--accent-foreground)",
},
tremor: {
brand: {
faint: "var(--tremor-brand-faint)",
muted: "var(--tremor-brand-muted)",
subtle: "var(--tremor-brand-subtle)",
DEFAULT: "var(--tremor-brand)",
emphasis: "var(--tremor-brand-emphasis)",
inverted: "var(--tremor-brand-inverted)",
},
background: {
muted: "var(--tremor-bg-muted)",
subtle: "var(--tremor-bg-subtle)",
DEFAULT: "var(--tremor-bg)",
emphasis: "var(--tremor-bg-emphasis)",
},
border: {
DEFAULT: "var(--tremor-border)",
},
ring: {
DEFAULT: "var(--tremor-ring)",
},
content: {
subtle: "var(--tremor-content-subtle)",
DEFAULT: "var(--tremor-content)",
emphasis: "var(--tremor-content-emphasis)",
strong: "var(--tremor-content-strong)",
inverted: "var(--tremor-content-inverted)",
},
},
},
borderColor: {
DEFAULT: "var(--border)",
},
container: {
center: true,
},
},
},
};
module.exports = config;