|
| 1 | +@tailwind base; |
| 2 | +@tailwind components; |
| 3 | +@tailwind utilities; |
| 4 | + |
| 5 | +@layer base { |
| 6 | + :root { |
| 7 | + --background: 0 0% 100%; |
| 8 | + --foreground: 240 10% 3.9%; |
| 9 | + --card: 0 0% 100%; |
| 10 | + --card-foreground: 240 10% 3.9%; |
| 11 | + --popover: 0 0% 100%; |
| 12 | + --popover-foreground: 240 10% 3.9%; |
| 13 | + --primary: 142.1 76.2% 36.3%; |
| 14 | + --primary-foreground: 355.7 100% 97.3%; |
| 15 | + --secondary: 240 4.8% 95.9%; |
| 16 | + --secondary-foreground: 240 5.9% 10%; |
| 17 | + --muted: 240 4.8% 95.9%; |
| 18 | + --muted-foreground: 240 3.8% 46.1%; |
| 19 | + --accent: 240 4.8% 95.9%; |
| 20 | + --accent-foreground: 240 5.9% 10%; |
| 21 | + --destructive: 0 84.2% 60.2%; |
| 22 | + --destructive-foreground: 0 0% 98%; |
| 23 | + --border: 240 5.9% 90%; |
| 24 | + --input: 240 5.9% 90%; |
| 25 | + --ring: 142.1 76.2% 36.3%; |
| 26 | + --radius: 0.5rem; |
| 27 | + } |
| 28 | + |
| 29 | + .dark { |
| 30 | + --background: 20 14.3% 4.1%; |
| 31 | + --foreground: 0 0% 95%; |
| 32 | + --card: 24 9.8% 10%; |
| 33 | + --card-foreground: 0 0% 95%; |
| 34 | + --popover: 0 0% 9%; |
| 35 | + --popover-foreground: 0 0% 95%; |
| 36 | + --primary: 142.1 70.6% 45.3%; |
| 37 | + --primary-foreground: 144.9 80.4% 10%; |
| 38 | + --secondary: 240 3.7% 15.9%; |
| 39 | + --secondary-foreground: 0 0% 98%; |
| 40 | + --muted: 0 0% 15%; |
| 41 | + --muted-foreground: 240 5% 64.9%; |
| 42 | + --accent: 12 6.5% 15.1%; |
| 43 | + --accent-foreground: 0 0% 98%; |
| 44 | + --destructive: 0 62.8% 30.6%; |
| 45 | + --destructive-foreground: 0 85.7% 97.3%; |
| 46 | + --border: 240 3.7% 15.9%; |
| 47 | + --input: 240 3.7% 15.9%; |
| 48 | + --ring: 142.4 71.8% 29.2%; |
| 49 | + } |
| 50 | +} |
| 51 | + |
| 52 | +@layer base { |
| 53 | + * { |
| 54 | + @apply border-border; |
| 55 | + } |
| 56 | + body { |
| 57 | + @apply bg-background text-foreground; |
| 58 | + } |
| 59 | +} |
0 commit comments