-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (53 loc) · 2.13 KB
/
Copy pathtailwind.config.js
File metadata and controls
53 lines (53 loc) · 2.13 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
"foreground-secondary": "var(--foreground-secondary)",
"foreground-muted": "var(--foreground-muted)",
surface: "var(--surface)",
card: "var(--card)",
"card-foreground": "var(--card-foreground)",
popover: "var(--popover)",
"popover-foreground": "var(--popover-foreground)",
primary: "rgb(var(--primary-rgb) / <alpha-value>)",
"primary-foreground": "var(--primary-foreground)",
secondary: "var(--secondary)",
"secondary-foreground": "var(--secondary-foreground)",
muted: "var(--muted)",
"muted-foreground": "var(--muted-foreground)",
accent: "var(--accent)",
"accent-foreground": "var(--accent-foreground)",
success: "rgb(var(--success-rgb) / <alpha-value>)",
"success-foreground": "var(--success-foreground)",
"success-subtle": "var(--success-subtle)",
"success-border": "var(--success-border)",
warning: "rgb(var(--warning-rgb) / <alpha-value>)",
"warning-foreground": "var(--warning-foreground)",
"warning-subtle": "var(--warning-subtle)",
"warning-border": "var(--warning-border)",
danger: "rgb(var(--danger-rgb) / <alpha-value>)",
"danger-foreground": "var(--danger-foreground)",
"danger-subtle": "var(--danger-subtle)",
"danger-border": "var(--danger-border)",
destructive: "rgb(var(--destructive-rgb) / <alpha-value>)",
"destructive-foreground": "var(--destructive-foreground)",
"border-subtle": "var(--border-subtle)",
border: "var(--border)",
"border-strong": "var(--border-strong)",
input: "var(--input)",
ring: "rgb(var(--ring-rgb) / <alpha-value>)"
},
borderRadius: {
sm: "calc(var(--radius) - 2px)",
md: "var(--radius)",
lg: "calc(var(--radius) + 2px)",
xl: "calc(var(--radius) + 4px)"
}
}
},
plugins: []
};