@tailwind base; @tailwind components; @tailwind utilities; /* Definition of the design system. All colors, gradients, fonts, etc should be defined here. All colors MUST be HSL. */ @layer base { :root { --background: 220 15% 97%; --foreground: 220 15% 15%; --card: 0 0% 100%; --card-foreground: 220 15% 15%; --popover: 0 0% 100%; --popover-foreground: 220 15% 15%; --primary: 217 91% 60%; --primary-foreground: 0 0% 100%; --secondary: 220 15% 95%; --secondary-foreground: 220 15% 15%; --muted: 220 15% 95%; --muted-foreground: 220 10% 45%; --accent: 217 91% 60%; --accent-foreground: 0 0% 100%; --destructive: 0 84% 60%; --destructive-foreground: 0 0% 100%; --border: 220 15% 88%; --input: 220 15% 88%; --ring: 217 91% 60%; --success: 142 76% 36%; --warning: 38 92% 50%; --mono: 220 15% 25%; --radius: 0.5rem; --sidebar-background: 0 0% 98%; --sidebar-foreground: 240 5.3% 26.1%; --sidebar-primary: 240 5.9% 10%; --sidebar-primary-foreground: 0 0% 98%; --sidebar-accent: 240 4.8% 95.9%; --sidebar-accent-foreground: 240 5.9% 10%; --sidebar-border: 220 13% 91%; --sidebar-ring: 217.2 91.2% 59.8%; } .dark { --background: 220 20% 10%; --foreground: 220 15% 95%; --card: 220 20% 12%; --card-foreground: 220 15% 95%; --popover: 220 20% 12%; --popover-foreground: 220 15% 95%; --primary: 217 91% 60%; --primary-foreground: 0 0% 100%; --secondary: 220 20% 16%; --secondary-foreground: 220 15% 95%; --muted: 220 20% 16%; --muted-foreground: 220 10% 60%; --accent: 217 91% 60%; --accent-foreground: 0 0% 100%; --destructive: 0 84% 60%; --destructive-foreground: 0 0% 100%; --border: 220 20% 20%; --input: 220 20% 20%; --ring: 217 91% 60%; --success: 142 76% 36%; --warning: 38 92% 50%; --mono: 220 15% 85%; --sidebar-background: 240 5.9% 10%; --sidebar-foreground: 240 4.8% 95.9%; --sidebar-primary: 224.3 76.3% 48%; --sidebar-primary-foreground: 0 0% 100%; --sidebar-accent: 240 3.7% 15.9%; --sidebar-accent-foreground: 240 4.8% 95.9%; --sidebar-border: 240 3.7% 15.9%; --sidebar-ring: 217.2 91.2% 59.8%; } } @layer base { * { @apply border-border; } body { @apply bg-background text-foreground; } }