| @tailwind base; |
| @tailwind components; |
| @tailwind utilities; |
|
|
| body { |
| font-family: Arial, Helvetica, sans-serif; |
| } |
|
|
| @layer utilities { |
| .text-balance { |
| text-wrap: balance; |
| } |
| } |
|
|
| @layer base { |
| :root { |
| --background: 0 0% 100%; |
| --foreground: 240, 3%, 12%; |
| --card: 0 0% 100%; |
| --card-foreground: 240, 3%, 12%; |
| --popover: 0 0% 100%; |
| --popover-foreground: 240, 3%, 12%; |
| --primary: 214, 82%, 51%; |
| --primary-foreground: 0 0% 98%; |
| --secondary: 240 4.8% 95.9%; |
| --secondary-foreground: 214, 82%, 51%; |
| --muted: 240 4.8% 95.9%; |
| --muted-foreground: 240 3.8% 46.1%; |
| --accent: 240 4.8% 95.9%; |
| --accent-foreground: 214, 82%, 51%; |
| --destructive: 0 84.2% 60.2%; |
| --destructive-foreground: 0 0% 98%; |
| --border: 240 5.9% 90%; |
| --input: 240 5.9% 90%; |
| --ring: 214, 82%, 51%; |
| --radius: 0.5rem; |
| --chart-1: 12 76% 61%; |
| --chart-2: 173 58% 39%; |
| --chart-3: 197 37% 24%; |
| --chart-4: 43 74% 66%; |
| --chart-5: 27 87% 67%; |
| } |
| |
| .dark { |
| --background: 240 3% 12%; |
| --foreground: 0 0% 98%; |
| --card: 220 7% 8%; |
| --card-foreground: 0 0% 98%; |
| --popover: 220 7% 8%; |
| --popover-foreground: 0 0% 98%; |
| --primary: 217 91% 60%; |
| --primary-foreground: 0 0% 98%; |
| --secondary: 240 3% 12%; |
| --secondary-foreground: 0 0% 98%; |
| --muted: 240 3% 12%; |
| --muted-foreground: 215 20.2% 65.1%; |
| --accent: 240 3% 12%; |
| --accent-foreground: 0 0% 98%; |
| --destructive: 0 62.8% 30.6%; |
| --destructive-foreground: 0 0% 98%; |
| --border: 225 9% 15%; |
| --input: 225 9% 15%; |
| --ring: 224 76.3% 48%; |
| --chart-1: 220 70% 50%; |
| --chart-2: 160 60% 45%; |
| --chart-3: 30 80% 55%; |
| --chart-4: 280 65% 60%; |
| --chart-5: 340 75% 55%; |
| } |
| } |
| |
| @layer base { |
| * { |
| @apply border-border; |
| } |
| body { |
| @apply bg-background text-foreground; |
| } |
| } |
|
|
| h1,h2,h3,h4,h5,h6 { |
| @apply text-foreground dark:text-foreground; |
| } |