-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.css
93 lines (67 loc) · 2.04 KB
/
index.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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 202.86 51.22% 8.04%;
--card: 0 0% 100%;
--card-foreground: 202.86 51.22% 8.04%;
--popover: 0 0% 100%;
--popover-foreground: 202.86 51.22% 8.04%;
--primary: 206.52 100% 64.51%;
--primary-foreground: 222.2 47.4% 11.2%;
--secondary: 35.33 100% 58.04%;
--secondary-foreground: 222.2 47.4% 11.2%;
--muted: 210 40% 96.1%;
--muted-foreground: 215.4 16.3% 46.9%;
--accent: 210 40% 96.1%;
--accent-foreground: 222.2 47.4% 11.2%;
--constructive: 120 100% 40%;
--constructive-foreground: 202.86 51.22% 8.04%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 210 40% 98%;
--border: 210 7% 79%;
--input: 210 7% 79%;
--ring: 202.86 51.22% 8.04%;
--scrollbar-track-color: #ffffff;
--scrollbar-width: thin;
--scrollbar-thumb-color: #ffa729;
--radius: 0.5rem;
}
.dark {
--background: 202.86 51.22% 8.04%;
--foreground: 210 40% 98%;
--card: 202.86 51.22% 8.04%;
--card-foreground: 210 40% 98%;
--popover: 202.86 51.22% 8.04%;
--popover-foreground: 210 40% 98%;
--primary: 206.52 100% 64.51%;
--primary-foreground: 222.2 47.4% 11.2%;
--secondary: 35.33 100% 58.04%;
--secondary-foreground: 222.2 47.4% 11.2%;
--muted: 217.2 32.6% 17.5%;
--muted-foreground: 215 20.2% 65.1%;
--accent: 217.2 32.6% 17.5%;
--accent-foreground: 210 40% 98%;
--constructive: 120 100% 40%;
--constructive-foreground: 202.86 51.22% 8.04%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 210 40% 98%;
--border: 218 28% 30%;
--input: 218 28% 30%;
--ring: 212.7 26.8% 83.9%;
--scrollbar-track-color: #0a1720;
}
}
@layer base {
* {
@apply border-border;
scrollbar-width: var(--scrollbar-width);
scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-track-color);
box-sizing: border-box;
}
body {
@apply bg-background text-foreground;
}
}