|
| 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 | + |
| 10 | + --muted: 240 4.8% 95.9%; |
| 11 | + --muted-foreground: 240 3.8% 46.1%; |
| 12 | + |
| 13 | + --popover: 0 0% 100%; |
| 14 | + --popover-foreground: 240 10% 3.9%; |
| 15 | + |
| 16 | + --card: 0 0% 100%; |
| 17 | + --card-foreground: 240 10% 3.9%; |
| 18 | + |
| 19 | + --border: 240 5.9% 90%; |
| 20 | + --input: 240 5.9% 90%; |
| 21 | + |
| 22 | + --primary: 240 5.9% 10%; |
| 23 | + --primary-foreground: 0 0% 98%; |
| 24 | + |
| 25 | + --secondary: 240 4.8% 95.9%; |
| 26 | + --secondary-foreground: 240 5.9% 10%; |
| 27 | + |
| 28 | + --accent: 240 4.8% 95.9%; |
| 29 | + --accent-foreground: ; |
| 30 | + |
| 31 | + --destructive: 0 84.2% 60.2%; |
| 32 | + --destructive-foreground: 0 0% 98%; |
| 33 | + |
| 34 | + --ring: 240 5% 64.9%; |
| 35 | + |
| 36 | + --radius: 0.5rem; |
| 37 | + } |
| 38 | + |
| 39 | + .dark { |
| 40 | + --background: 240 10% 3.9%; |
| 41 | + --foreground: 0 0% 98%; |
| 42 | + |
| 43 | + --muted: 240 3.7% 15.9%; |
| 44 | + --muted-foreground: 240 5% 64.9%; |
| 45 | + |
| 46 | + --popover: 240 10% 3.9%; |
| 47 | + --popover-foreground: 0 0% 98%; |
| 48 | + |
| 49 | + --card: 240 10% 3.9%; |
| 50 | + --card-foreground: 0 0% 98%; |
| 51 | + |
| 52 | + --border: 240 3.7% 15.9%; |
| 53 | + --input: 240 3.7% 15.9%; |
| 54 | + |
| 55 | + --primary: 0 0% 98%; |
| 56 | + --primary-foreground: 240 5.9% 10%; |
| 57 | + |
| 58 | + --secondary: 240 3.7% 15.9%; |
| 59 | + --secondary-foreground: 0 0% 98%; |
| 60 | + |
| 61 | + --accent: 240 3.7% 15.9%; |
| 62 | + --accent-foreground: ; |
| 63 | + |
| 64 | + --destructive: 0 62.8% 30.6%; |
| 65 | + --destructive-foreground: 0 85.7% 97.3%; |
| 66 | + |
| 67 | + --ring: 240 3.7% 15.9%; |
| 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