/*
 * V3 Theme System
 *
 * Colors are applied at runtime from src/theme.ts via the ThemeProvider.
 * DO NOT edit color values here — edit src/theme.ts instead.
 * The defaults below are grayscale placeholders — theme.ts overrides them.
 */

:root {
  /* Grayscale placeholders — overridden at runtime by ThemeProvider */
  --background: 0 0% 7%;
  --foreground: 0 0% 90%;
  --card: 0 0% 10%;
  --card-foreground: 0 0% 90%;
  --popover: 0 0% 10%;
  --popover-foreground: 0 0% 90%;
  --primary: 0 0% 90%;
  --primary-foreground: 0 0% 7%;
  --secondary: 0 0% 15%;
  --secondary-foreground: 0 0% 80%;
  --muted: 0 0% 14%;
  --muted-foreground: 0 0% 55%;
  --accent: 0 0% 90%;
  --accent-foreground: 0 0% 7%;
  --destructive: 0 72% 51%;
  --destructive-foreground: 0 0% 100%;
  --border: 0 0% 18%;
  --input: 0 0% 18%;
  --ring: 0 0% 90%;
  --link: 0 0% 70%;
  --link-hover: 0 0% 80%;
  --button: 0 0% 15%;
  --button-foreground: 0 0% 90%;
  --button-border: 0 0% 22%;
  --button-hover: 0 0% 20%;
  --button-hover-foreground: 0 0% 95%;
  --button-hover-border: 0 0% 40%;
  --button-ring: 0 0% 90%;
  --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%;
  --sidebar-background: 0 0% 5%;
  --sidebar-foreground: 0 0% 80%;
  --sidebar-primary: 0 0% 90%;
  --sidebar-primary-foreground: 0 0% 7%;
  --sidebar-accent: 0 0% 12%;
  --sidebar-accent-foreground: 0 0% 80%;
  --sidebar-border: 0 0% 15%;
  --sidebar-ring: 0 0% 90%;
  --radius: 0.5rem;
}

html,
body {
  margin: 0;
}
