22@tailwind components;
33@tailwind utilities;
44
5- : root {
6- --background : # ffffff ;
7- --foreground : # 171717 ;
8- }
9-
10- @media (prefers-color-scheme : dark) {
11- : root {
12- --background : # 0a0a0a ;
13- --foreground : # ededed ;
14- }
15- }
16-
175body {
18- color : var (--foreground );
19- background : var (--background );
206 font-family : Arial, Helvetica, sans-serif;
217}
228
@@ -25,3 +11,68 @@ body {
2511 text-wrap : balance;
2612 }
2713}
14+
15+ @layer base {
16+ : root {
17+ --background : 0 0% 100% ;
18+ --foreground : 222.2 84% 4.9% ;
19+ --card : 0 0% 100% ;
20+ --card-foreground : 222.2 84% 4.9% ;
21+ --popover : 0 0% 100% ;
22+ --popover-foreground : 222.2 84% 4.9% ;
23+ --primary : 222.2 47.4% 11.2% ;
24+ --primary-foreground : 210 40% 98% ;
25+ --secondary : 210 40% 96.1% ;
26+ --secondary-foreground : 222.2 47.4% 11.2% ;
27+ --muted : 210 40% 96.1% ;
28+ --muted-foreground : 215.4 16.3% 46.9% ;
29+ --accent : 210 40% 96.1% ;
30+ --accent-foreground : 222.2 47.4% 11.2% ;
31+ --destructive : 0 84.2% 60.2% ;
32+ --destructive-foreground : 210 40% 98% ;
33+ --border : 214.3 31.8% 91.4% ;
34+ --input : 214.3 31.8% 91.4% ;
35+ --ring : 222.2 84% 4.9% ;
36+ --chart-1 : 12 76% 61% ;
37+ --chart-2 : 173 58% 39% ;
38+ --chart-3 : 197 37% 24% ;
39+ --chart-4 : 43 74% 66% ;
40+ --chart-5 : 27 87% 67% ;
41+ --radius : 0.5rem ;
42+ }
43+ .dark {
44+ --background : 222.2 84% 4.9% ;
45+ --foreground : 210 40% 98% ;
46+ --card : 222.2 84% 4.9% ;
47+ --card-foreground : 210 40% 98% ;
48+ --popover : 222.2 84% 4.9% ;
49+ --popover-foreground : 210 40% 98% ;
50+ --primary : 210 40% 98% ;
51+ --primary-foreground : 222.2 47.4% 11.2% ;
52+ --secondary : 217.2 32.6% 17.5% ;
53+ --secondary-foreground : 210 40% 98% ;
54+ --muted : 217.2 32.6% 17.5% ;
55+ --muted-foreground : 215 20.2% 65.1% ;
56+ --accent : 217.2 32.6% 17.5% ;
57+ --accent-foreground : 210 40% 98% ;
58+ --destructive : 0 62.8% 30.6% ;
59+ --destructive-foreground : 210 40% 98% ;
60+ --border : 217.2 32.6% 17.5% ;
61+ --input : 217.2 32.6% 17.5% ;
62+ --ring : 212.7 26.8% 83.9% ;
63+ --chart-1 : 220 70% 50% ;
64+ --chart-2 : 160 60% 45% ;
65+ --chart-3 : 30 80% 55% ;
66+ --chart-4 : 280 65% 60% ;
67+ --chart-5 : 340 75% 55% ;
68+ }
69+ }
70+
71+ @layer base {
72+ * {
73+ @apply border-border;
74+ }
75+ body {
76+ @apply bg-background text-foreground;
77+ }
78+ }
0 commit comments