@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: 0 0% 98%; --foreground: 222 47% 11%; --card: 0 0% 100%; --card-foreground: 222 47% 11%; --popover: 0 0% 100%; --popover-foreground: 222 47% 11%; --primary: 221 83% 53%; --primary-foreground: 0 0% 100%; --secondary: 220 14% 96%; --secondary-foreground: 222 47% 11%; --muted: 220 14% 96%; --muted-foreground: 215 16% 47%; --accent: 262 83% 58%; --accent-foreground: 0 0% 100%; --destructive: 0 84% 60%; --destructive-foreground: 0 0% 100%; --border: 220 13% 91%; --input: 220 13% 91%; --ring: 221 83% 53%; --radius: 0.75rem; --sidebar-background: 0 0% 100%; --sidebar-foreground: 222 47% 11%; --sidebar-primary: 221 83% 53%; --sidebar-primary-foreground: 0 0% 100%; --sidebar-accent: 220 14% 96%; --sidebar-accent-foreground: 222 47% 11%; --sidebar-border: 220 13% 91%; --sidebar-ring: 221 83% 53%; --shadow-card: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); --shadow-hover: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); --transition-smooth: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); } .dark { --background: 222 47% 11%; --foreground: 210 40% 98%; --card: 224 71% 4%; --card-foreground: 210 40% 98%; --popover: 224 71% 4%; --popover-foreground: 210 40% 98%; --primary: 221 83% 53%; --primary-foreground: 0 0% 100%; --secondary: 217 33% 17%; --secondary-foreground: 210 40% 98%; --muted: 217 33% 17%; --muted-foreground: 215 20% 65%; --accent: 262 83% 58%; --accent-foreground: 0 0% 100%; --destructive: 0 63% 31%; --destructive-foreground: 210 40% 98%; --border: 217 33% 17%; --input: 217 33% 17%; --ring: 224 76% 48%; --sidebar-background: 224 71% 4%; --sidebar-foreground: 210 40% 98%; --sidebar-primary: 221 83% 53%; --sidebar-primary-foreground: 0 0% 100%; --sidebar-accent: 217 33% 17%; --sidebar-accent-foreground: 210 40% 98%; --sidebar-border: 217 33% 17%; --sidebar-ring: 224 76% 48%; } } @layer base { * { @apply border-border; } body { @apply bg-background text-foreground; } }