forked from kiliman/shadcn-custom-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.json
45 lines (45 loc) · 1.31 KB
/
theme.json
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
{
"light": {
"--background": "white",
"--foreground": "gray-950",
"--card": "white",
"--card-foreground": "gray-950",
"--popover": "white",
"--popover-foreground": "gray-950",
"--primary": "primary-600",
"--primary-foreground": "primary-50",
"--secondary": "secondary-100",
"--secondary-foreground": "secondary-900",
"--muted": "gray-100",
"--muted-foreground": "gray-500",
"--accent": "accent-100",
"--accent-foreground": "accent-900",
"--destructive": "red-500",
"--destructive-foreground": "gray-50",
"--border": "gray-200",
"--input": "gray-200",
"--ring": "primary-600",
"--radius": "0.5rem"
},
"dark": {
"--background": "gray-950",
"--foreground": "gray-50",
"--card": "gray-950",
"--card-foreground": "gray-50",
"--popover": "gray-950",
"--popover-foreground": "gray-50",
"--primary": "primary-600",
"--primary-foreground": "primary-50",
"--secondary": "secondary-800",
"--secondary-foreground": "secondary-50",
"--muted": "gray-800",
"--muted-foreground": "gray-400",
"--accent": "accent-800",
"--accent-foreground": "accent-50",
"--destructive": "red-900",
"--destructive-foreground": "gray-50",
"--border": "gray-800",
"--input": "gray-800",
"--ring": "primary-600"
}
}