blob: 82fa9eabc0948a2aac60bb74383d078b90b67d32 (
plain) (
blame)
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
|
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 242 242 247;
--foreground: 0 0 0;
--card: 255 255 255;
--card-foreground: 0 0 0;
--popover: 230 230 235;
--popover-foreground: 0 0 0;
--primary: 0 123 255;
--primary-foreground: 255 255 255;
--secondary: 45 185 227;
--secondary-foreground: 255 255 255;
--muted: 176 176 181;
--muted-foreground: 102 102 102;
--accent: 255 40 84;
--accent-foreground: 255 255 255;
--destructive: 255 56 43;
--destructive-foreground: 255 255 255;
--border: 230 230 235;
--input: 210 210 215;
--ring: 230 230 235;
}
@media (prefers-color-scheme: dark) {
:root {
--background: 0 0 0;
--foreground: 255 255 255;
--card: 21 21 24;
--card-foreground: 255 255 255;
--popover: 40 40 40;
--popover-foreground: 255 255 255;
--primary: 3 133 255;
--primary-foreground: 255 255 255;
--secondary: 100 211 254;
--secondary-foreground: 255 255 255;
--muted: 112 112 115;
--muted-foreground: 226 226 231;
--accent: 255 52 95;
--accent-foreground: 255 255 255;
--destructive: 254 67 54;
--destructive-foreground: 255 255 255;
--border: 40 40 40;
--input: 51 51 51;
--ring: 40 40 40;
}
}
}
|