|
3 | 3 | @tailwind utilities;
|
4 | 4 |
|
5 | 5 | @layer base {
|
6 |
| - :root { |
7 |
| - --background: 0 0% 100%; |
8 |
| - --foreground: 222.2 47.4% 11.2%; |
9 |
| - |
10 |
| - --muted: 210 40% 96.1%; |
11 |
| - --muted-foreground: 215.4 16.3% 46.9%; |
12 |
| - |
13 |
| - --popover: 0 0% 100%; |
14 |
| - --popover-foreground: 222.2 47.4% 11.2%; |
15 |
| - |
16 |
| - --border: 214.3 31.8% 91.4%; |
17 |
| - --input: 214.3 31.8% 91.4%; |
18 |
| - |
19 |
| - --card: 0 0% 100%; |
20 |
| - --card-foreground: 222.2 47.4% 11.2%; |
21 |
| - |
22 |
| - --primary: 222.2 47.4% 11.2%; |
23 |
| - --primary-foreground: 210 40% 98%; |
24 |
| - |
25 |
| - --secondary: 210 40% 96.1%; |
26 |
| - --secondary-foreground: 222.2 47.4% 11.2%; |
27 |
| - |
28 |
| - --accent: 210 40% 96.1%; |
29 |
| - --accent-foreground: 222.2 47.4% 11.2%; |
30 |
| - |
31 |
| - --destructive: 0 92% 38%; |
32 |
| - --destructive-foreground: 210 40% 98%; |
33 |
| - |
34 |
| - --ring: 215 20.2% 65.1%; |
35 |
| - |
36 |
| - --radius: 0.5rem; |
37 |
| - } |
38 |
| - |
39 |
| - .dark { |
40 |
| - --background: 224 71% 4%; |
41 |
| - --foreground: 213 31% 91%; |
42 |
| - |
43 |
| - --muted: 223 47% 11%; |
44 |
| - --muted-foreground: 215.4 16.3% 56.9%; |
45 |
| - |
46 |
| - --accent: 216 34% 17%; |
47 |
| - --accent-foreground: 210 40% 98%; |
48 |
| - |
49 |
| - --popover: 224 71% 4%; |
50 |
| - --popover-foreground: 215 20.2% 65.1%; |
51 |
| - |
52 |
| - --border: 216 34% 17%; |
53 |
| - --input: 216 34% 17%; |
54 |
| - |
55 |
| - --card: 224 71% 4%; |
56 |
| - --card-foreground: 213 31% 91%; |
57 |
| - |
58 |
| - --primary: 210 40% 98%; |
59 |
| - --primary-foreground: 222.2 47.4% 1.2%; |
60 |
| - |
61 |
| - --secondary: 222.2 47.4% 11.2%; |
62 |
| - --secondary-foreground: 210 40% 98%; |
63 |
| - |
64 |
| - --destructive: 359 51% 48%; |
65 |
| - --destructive-foreground: 210 40% 98%; |
66 |
| - |
67 |
| - --ring: 216 34% 17%; |
68 |
| - |
69 |
| - --radius: 0.5rem; |
70 |
| - } |
| 6 | + :root { |
| 7 | + --background: 194 0% 95%; |
| 8 | + --foreground: 194 0% 0%; |
| 9 | + --card: 194 0% 90%; |
| 10 | + --card-foreground: 194 0% 10%; |
| 11 | + --popover: 194 0% 95%; |
| 12 | + --popover-foreground: 194 95% 0%; |
| 13 | + --primary: 194 54.5% 61.2%; |
| 14 | + --primary-foreground: 0 0% 0%; |
| 15 | + --secondary: 194 10% 70%; |
| 16 | + --secondary-foreground: 0 0% 0%; |
| 17 | + --muted: 156 10% 85%; |
| 18 | + --muted-foreground: 194 0% 35%; |
| 19 | + --accent: 156 10% 80%; |
| 20 | + --accent-foreground: 194 0% 10%; |
| 21 | + --destructive: 0 50% 30%; |
| 22 | + --destructive-foreground: 194 0% 90%; |
| 23 | + --border: 194 20% 50%; |
| 24 | + --input: 194 20% 18%; |
| 25 | + --ring: 194 54.5% 61.2%; |
| 26 | + --radius: 0.75rem; |
| 27 | + } |
| 28 | + .dark { |
| 29 | + --background: 194 10% 5%; |
| 30 | + --foreground: 194 0% 90%; |
| 31 | + --card: 194 0% 0%; |
| 32 | + --card-foreground: 194 0% 90%; |
| 33 | + --popover: 194 10% 5%; |
| 34 | + --popover-foreground: 194 0% 90%; |
| 35 | + --primary: 194 54.5% 61.2%; |
| 36 | + --primary-foreground: 0 0% 0%; |
| 37 | + --secondary: 194 10% 10%; |
| 38 | + --secondary-foreground: 0 0% 100%; |
| 39 | + --muted: 156 10% 15%; |
| 40 | + --muted-foreground: 194 0% 60%; |
| 41 | + --accent: 156 10% 15%; |
| 42 | + --accent-foreground: 194 0% 90%; |
| 43 | + --destructive: 0 50% 30%; |
| 44 | + --destructive-foreground: 194 0% 90%; |
| 45 | + --border: 194 20% 18%; |
| 46 | + --input: 194 20% 18%; |
| 47 | + --ring: 194 54.5% 61.2%; |
| 48 | + --radius: 0.75rem; |
| 49 | + } |
71 | 50 | }
|
72 | 51 |
|
73 | 52 | @layer base {
|
|
0 commit comments