-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.css
46 lines (45 loc) · 1.32 KB
/
global.css
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
@layer base {
:root {
--background: 233 18% 19%;
--foreground: 173 24% 93%;
--muted: 233 12% 23%;
--muted-foreground: 233 12% 73%;
--popover: 233 18% 16%;
--popover-foreground: 0 0% 100%;
--card: 233 18% 17%;
--card-foreground: 173 24% 98%;
--border: 233 8% 24%;
--input: 233 8% 27%;
--primary: 44 100% 71%;
--primary-foreground: 44 100% 11%;
--secondary: 44 30% 25%;
--secondary-foreground: 44 30% 85%;
--accent: 233 18% 34%;
--accent-foreground: 233 18% 94%;
--destructive: 10 90% 57%;
--destructive-foreground: 0 0% 100%;
--ring: 44 100% 71%;
--radius: 0.5rem;
}
.dark {
--background: 233 18% 19%;
--foreground: 173 24% 93%;
--muted: 233 12% 23%;
--muted-foreground: 233 12% 73%;
--popover: 233 18% 16%;
--popover-foreground: 0 0% 100%;
--card: 233 18% 17%;
--card-foreground: 173 24% 98%;
--border: 233 8% 24%;
--input: 233 8% 27%;
--primary: 44 100% 71%;
--primary-foreground: 44 100% 11%;
--secondary: 44 30% 25%;
--secondary-foreground: 44 30% 85%;
--accent: 233 18% 34%;
--accent-foreground: 233 18% 94%;
--destructive: 10 90% 57%;
--destructive-foreground: 0 0% 100%;
--ring: 44 100% 71%;
}
}