|
| 1 | +@tailwind base; |
| 2 | +@tailwind components; |
| 3 | +@tailwind utilities; |
| 4 | + |
| 5 | +:root { |
| 6 | + --foreground-rgb: 0, 0, 0; |
| 7 | + --background-start-rgb: 214, 219, 220; |
| 8 | + --background-end-rgb: 255, 255, 255; |
| 9 | +} |
| 10 | + |
| 11 | +@media (prefers-color-scheme: dark) { |
| 12 | + :root { |
| 13 | + --foreground-rgb: 255, 255, 255; |
| 14 | + --background-start-rgb: 0, 0, 0; |
| 15 | + --background-end-rgb: 0, 0, 0; |
| 16 | + } |
| 17 | +} |
| 18 | + |
| 19 | +@layer utilities { |
| 20 | + .text-balance { |
| 21 | + text-wrap: balance; |
| 22 | + } |
| 23 | +} |
| 24 | + |
| 25 | +@layer base { |
| 26 | + :root { |
| 27 | + --background: 0 0% 100%; |
| 28 | + --foreground: 0 0% 3.9%; |
| 29 | + --card: 0 0% 100%; |
| 30 | + --card-foreground: 0 0% 3.9%; |
| 31 | + --popover: 0 0% 100%; |
| 32 | + --popover-foreground: 0 0% 3.9%; |
| 33 | + --primary: 0 0% 9%; |
| 34 | + --primary-foreground: 0 0% 98%; |
| 35 | + --secondary: 0 0% 96.1%; |
| 36 | + --secondary-foreground: 0 0% 9%; |
| 37 | + --muted: 0 0% 96.1%; |
| 38 | + --muted-foreground: 0 0% 45.1%; |
| 39 | + --accent: 0 0% 96.1%; |
| 40 | + --accent-foreground: 0 0% 9%; |
| 41 | + --destructive: 0 84.2% 60.2%; |
| 42 | + --destructive-foreground: 0 0% 98%; |
| 43 | + --border: 0 0% 89.8%; |
| 44 | + --input: 0 0% 89.8%; |
| 45 | + --ring: 0 0% 3.9%; |
| 46 | + --chart-1: 12 76% 61%; |
| 47 | + --chart-2: 173 58% 39%; |
| 48 | + --chart-3: 197 37% 24%; |
| 49 | + --chart-4: 43 74% 66%; |
| 50 | + --chart-5: 27 87% 67%; |
| 51 | + --radius: 0.5rem; |
| 52 | + } |
| 53 | + .dark { |
| 54 | + --background: 0 0% 3.9%; |
| 55 | + --foreground: 0 0% 98%; |
| 56 | + --card: 0 0% 3.9%; |
| 57 | + --card-foreground: 0 0% 98%; |
| 58 | + --popover: 0 0% 3.9%; |
| 59 | + --popover-foreground: 0 0% 98%; |
| 60 | + --primary: 0 0% 98%; |
| 61 | + --primary-foreground: 0 0% 9%; |
| 62 | + --secondary: 0 0% 14.9%; |
| 63 | + --secondary-foreground: 0 0% 98%; |
| 64 | + --muted: 0 0% 14.9%; |
| 65 | + --muted-foreground: 0 0% 63.9%; |
| 66 | + --accent: 0 0% 14.9%; |
| 67 | + --accent-foreground: 0 0% 98%; |
| 68 | + --destructive: 0 62.8% 30.6%; |
| 69 | + --destructive-foreground: 0 0% 98%; |
| 70 | + --border: 0 0% 14.9%; |
| 71 | + --input: 0 0% 14.9%; |
| 72 | + --ring: 0 0% 83.1%; |
| 73 | + --chart-1: 220 70% 50%; |
| 74 | + --chart-2: 160 60% 45%; |
| 75 | + --chart-3: 30 80% 55%; |
| 76 | + --chart-4: 280 65% 60%; |
| 77 | + --chart-5: 340 75% 55%; |
| 78 | + } |
| 79 | +} |
| 80 | + |
| 81 | +@layer base { |
| 82 | + * { |
| 83 | + @apply border-border; |
| 84 | + } |
| 85 | + body { |
| 86 | + @apply bg-background text-foreground; |
| 87 | + } |
| 88 | +} |
0 commit comments