-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.css
More file actions
120 lines (90 loc) · 2.6 KB
/
index.css
File metadata and controls
120 lines (90 loc) · 2.6 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
@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: 0 0% 100%;
--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;
--chart-1: 12 76% 61%;
--chart-2: 173 58% 39%;
--chart-3: 197 37% 24%;
--chart-4: 43 74% 66%;
--chart-5: 27 87% 67%;
}
.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;
--chart-1: 220 70% 50%;
--chart-2: 160 60% 45%;
--chart-3: 30 80% 55%;
--chart-4: 280 65% 60%;
--chart-5: 340 75% 55%;
}
}
@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;
}
#root {
width: 100%;
height: 100%;
}
/* Hide number input spinner buttons */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}
}