@import "tailwindcss"; @import "tw-animate-css"; @import "shadcn/tailwind.css"; @custom-variant dark (&:is(.dark *)); @theme inline { --color-background: var(--background); --color-foreground: var(--foreground); --font-sans: var(--font-sans); --font-mono: var(--font-geist-mono); --font-heading: var(--font-sans); --color-sidebar-ring: var(--sidebar-ring); --color-sidebar-border: var(--sidebar-border); --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); --color-sidebar-accent: var(--sidebar-accent); --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); --color-sidebar-primary: var(--sidebar-primary); --color-sidebar-foreground: var(--sidebar-foreground); --color-sidebar: var(--sidebar); --color-chart-5: var(--chart-5); --color-chart-4: var(--chart-4); --color-chart-3: var(--chart-3); --color-chart-2: var(--chart-2); --color-chart-1: var(--chart-1); --color-ring: var(--ring); --color-input: var(--input); --color-border: var(--border); --color-destructive: var(--destructive); --color-accent-foreground: var(--accent-foreground); --color-accent: var(--accent); --color-muted-foreground: var(--muted-foreground); --color-muted: var(--muted); --color-secondary-foreground: var(--secondary-foreground); --color-secondary: var(--secondary); --color-primary-foreground: var(--primary-foreground); --color-primary: var(--primary); --color-popover-foreground: var(--popover-foreground); --color-popover: var(--popover); --color-card-foreground: var(--card-foreground); --color-card: var(--card); --radius-sm: calc(var(--radius) * 0.6); --radius-md: calc(var(--radius) * 0.8); --radius-lg: var(--radius); --radius-xl: calc(var(--radius) * 1.4); --radius-2xl: calc(var(--radius) * 1.8); --radius-3xl: calc(var(--radius) * 2.2); --radius-4xl: calc(var(--radius) * 2.6); } :root { --background: #f8fafc; --foreground: #020617; --card: #ffffff; --card-foreground: #020617; --popover: #ffffff; --popover-foreground: #020617; --primary: #2563EB; --primary-foreground: #ffffff; --secondary: #f1f5f9; --secondary-foreground: #0f172a; --muted: #f1f5f9; --muted-foreground: #64748b; --accent: #38bdf8; --accent-foreground: #020617; --destructive: #ef4444; --destructive-foreground: #f8fafc; --border: #e2e8f0; --input: #e2e8f0; --ring: #38bdf8; --chart-1: #2563EB; --chart-2: #38bdf8; --chart-3: #6366f1; --chart-4: #8b5cf6; --chart-5: #ec4899; --radius: 0.5rem; --sidebar: #f8fafc; --sidebar-foreground: #020617; --sidebar-primary: #2563EB; --sidebar-primary-foreground: #ffffff; --sidebar-accent: #f1f5f9; --sidebar-accent-foreground: #020617; --sidebar-border: #e2e8f0; --sidebar-ring: #38bdf8; } .dark { --background: #020617; --foreground: #f8fafc; --card: #0F172A; --card-foreground: #f8fafc; --popover: #0F172A; --popover-foreground: #f8fafc; --primary: #2563EB; --primary-foreground: #ffffff; --secondary: #1e293b; --secondary-foreground: #f8fafc; --muted: #1e293b; --muted-foreground: #94a3b8; --accent: #38BDF8; --accent-foreground: #020617; --destructive: #7f1d1d; --destructive-foreground: #f8fafc; --border: #1e293b; --input: #1e293b; --ring: #38BDF8; --chart-1: #2563EB; --chart-2: #38bdf8; --chart-3: #6366f1; --chart-4: #8b5cf6; --chart-5: #ec4899; --sidebar: #0F172A; --sidebar-foreground: #f8fafc; --sidebar-primary: #2563EB; --sidebar-primary-foreground: #ffffff; --sidebar-accent: #1e293b; --sidebar-accent-foreground: #f8fafc; --sidebar-border: #1e293b; --sidebar-ring: #38BDF8; } @layer base { * { @apply border-border outline-ring/50; } body { @apply bg-background text-foreground; } html { @apply font-sans; } }