-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
76 lines (74 loc) · 2.17 KB
/
Copy pathtailwind.config.ts
File metadata and controls
76 lines (74 loc) · 2.17 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
64
65
66
67
68
69
70
71
72
73
74
75
76
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: ["class", "class"],
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
bg: 'var(--bg)',
'bg-elevated': 'var(--bg-elevated)',
'bg-raised': 'var(--bg-raised)',
'bg-hover': 'var(--bg-hover)',
border: 'var(--border)',
'border-strong': 'var(--border-strong)',
text: 'var(--text)',
'text-muted': 'var(--text-muted)',
'text-faint': 'var(--text-faint)',
accent: 'var(--accent)',
'accent-hover': 'var(--accent-hover)',
'accent-bg': 'var(--accent-bg)',
green: 'var(--green)',
'green-bg': 'var(--green-bg)',
red: 'var(--red)',
'red-bg': 'var(--red-bg)',
yellow: 'var(--yellow)',
'yellow-bg': 'var(--yellow-bg)',
blue: 'var(--blue)',
'blue-bg': 'var(--blue-bg)',
gray: 'var(--gray)',
'gray-bg': 'var(--gray-bg)',
background: 'var(--bg)',
foreground: 'var(--text)',
card: 'var(--bg-elevated)',
'card-foreground': 'var(--text)',
popover: 'var(--bg-elevated)',
'popover-foreground': 'var(--text)',
primary: 'var(--accent)',
'primary-foreground': '#0a0d12',
secondary: 'var(--bg-raised)',
'secondary-foreground': 'var(--text)',
muted: 'var(--bg-hover)',
'muted-foreground': 'var(--text-muted)',
destructive: 'var(--red)',
'destructive-foreground': '#0a0d12',
input: 'var(--border)',
ring: 'var(--accent)',
sidebar: {
DEFAULT: 'hsl(var(--sidebar-background))',
foreground: 'hsl(var(--sidebar-foreground))',
primary: 'hsl(var(--sidebar-primary))',
'primary-foreground': 'hsl(var(--sidebar-primary-foreground))',
accent: 'hsl(var(--sidebar-accent))',
'accent-foreground': 'hsl(var(--sidebar-accent-foreground))',
border: 'hsl(var(--sidebar-border))',
ring: 'hsl(var(--sidebar-ring))'
}
},
borderRadius: {
sm: 'var(--radius-sm)',
md: 'var(--radius)',
lg: 'var(--radius-lg)'
},
fontFamily: {
sans: [
'var(--font-sans)'
],
mono: [
'var(--font-mono)'
]
}
}
},
plugins: [],
};
export default config;