@import 'tailwindcss'; @plugin 'tailwindcss-animate'; @custom-variant dark (&:is(.dark *)); @theme { --font-inter: Inter, sans-serif; --color-border: hsl(var(--border)); --color-input: hsl(var(--input)); --color-ring: hsl(var(--ring)); --color-background: hsl(var(--background)); --color-foreground: hsl(var(--foreground)); --color-primary: hsl(var(--primary)); --color-primary-foreground: hsl(var(--primary-foreground)); --color-secondary: hsl(var(--secondary)); --color-secondary-foreground: hsl(var(--secondary-foreground)); --color-destructive: hsl(var(--destructive)); --color-destructive-foreground: hsl(var(--destructive-foreground)); --color-muted: hsl(var(--muted)); --color-muted-foreground: hsl(var(--muted-foreground)); --color-accent: hsl(var(--accent)); --color-accent-foreground: hsl(var(--accent-foreground)); --color-popover: hsl(var(--popover)); --color-popover-foreground: hsl(var(--popover-foreground)); --color-card: hsl(var(--card)); --color-card-foreground: hsl(var(--card-foreground)); --color-sidebar: hsl(var(--sidebar-background)); --color-sidebar-foreground: hsl(var(--sidebar-foreground)); --color-sidebar-primary: hsl(var(--sidebar-primary)); --color-sidebar-primary-foreground: hsl(var(--sidebar-primary-foreground)); --color-sidebar-accent: hsl(var(--sidebar-accent)); --color-sidebar-accent-foreground: hsl(var(--sidebar-accent-foreground)); --color-sidebar-border: hsl(var(--sidebar-border)); --color-sidebar-ring: hsl(var(--sidebar-ring)); --color-gray-50: oklch(98.5% 0 0); --color-gray-100: oklch(96.7% 0.001 286.375); --color-gray-200: oklch(92% 0.004 286.32); --color-gray-300: oklch(87.1% 0.006 286.286); --color-gray-400: oklch(70.5% 0.015 286.067); --color-gray-500: oklch(55.2% 0.016 285.938); --color-gray-600: oklch(44.2% 0.017 285.786); --color-gray-700: oklch(37% 0.013 285.805); --color-gray-800: oklch(27.4% 0.006 286.033); --color-gray-900: oklch(21% 0.006 285.885); --color-gray-950: oklch(14.1% 0.005 285.823); --radius-lg: var(--radius); --radius-md: calc(var(--radius) - 2px); --radius-sm: calc(var(--radius) - 4px); --animate-accordion-down: accordion-down 0.2s ease-out; --animate-accordion-up: accordion-up 0.2s ease-out; @keyframes accordion-down { from { height: 0; } to { height: var(--radix-accordion-content-height); } } @keyframes accordion-up { from { height: var(--radix-accordion-content-height); } to { height: 0; } } } @utility container { margin-inline: auto; padding-inline: 2rem; @media (width >= --theme(--breakpoint-sm)) { max-width: none; } @media (width >= 1400px) { max-width: 1400px; } } /* The default border color has changed to `currentcolor` in Tailwind CSS v4, so we've added these compatibility styles to make sure everything still looks the same as it did with Tailwind CSS v3. If we ever want to remove these styles, we need to add an explicit border color utility to any element that depends on these defaults. */ @layer base { *, ::after, ::before, ::backdrop, ::file-selector-button { border-color: var(--color-gray-200, currentcolor); } } @layer base { :root { --background: 111 7% 6%; --foreground: 60 9% 98%; --card: 111 7% 6%; --card-foreground: 60 9% 98%; --popover: 111 7% 6%; --popover-foreground: 60 9% 98%; --primary: 110 43% 69%; --primary-foreground: 111 7% 6%; --secondary: 111 13% 15%; --secondary-foreground: 60 9% 98%; --muted: 111 13% 15%; --muted-foreground: 60 5% 64%; --accent: 111 13% 15%; --accent-foreground: 60 9% 98%; --destructive: 0 84% 37%; --destructive-foreground: 60 9% 98%; --border: 111 13% 15%; --input: 111 13% 15%; --ring: 110 43% 69%; /* Olive ring with better contrast */ --radius: 0.5rem; /* Olive sidebar theme with better contrast */ --sidebar-background: 111 13% 10%; --sidebar-foreground: 60 9% 95%; --sidebar-primary: 110 43% 69%; /* Better contrast olive */ --sidebar-primary-foreground: 111 7% 6%; --sidebar-accent: 111 13% 18%; --sidebar-accent-foreground: 60 9% 95%; --sidebar-border: 111 13% 18%; --sidebar-ring: 110 43% 69%; /* Better contrast olive */ } } @layer base { * { @apply border-border; } body { @apply bg-background text-foreground; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; } /* Canvas gradient with olive accent */ .canvas-gradient { background: linear-gradient(135deg, hsl(111, 13%, 10%) 0%, hsl(111, 13%, 12%) 50%, hsl(111, 13%, 10%) 100%); } }