/* src/ui/globals.css */
@tailwind base;

@tailwind components;

@tailwind utilities;

@layer base {
  :root {
    --background: 0 0% 4%;
    --foreground: 0 0% 88%;
    --card: 0 0% 8%;
    --card-foreground: 0 0% 88%;
    --popover: 0 0% 10%;
    --popover-foreground: 0 0% 88%;
    --primary: 213 100% 64%;
    --primary-foreground: 0 0% 4%;
    --secondary: 0 0% 12%;
    --secondary-foreground: 0 0% 70%;
    --muted: 0 0% 12%;
    --muted-foreground: 0 0% 47%;
    --accent: 0 0% 14%;
    --accent-foreground: 0 0% 88%;
    --destructive: 0 86% 71%;
    --destructive-foreground: 0 0% 4%;
    --border: 0 0% 16%;
    --input: 0 0% 16%;
    --ring: 213 100% 64%;
    --radius: .375rem;
  }
}

@layer base {
  * {
    @apply border-border;
  }

  body {
    @apply bg-background text-foreground font-mono;
  }
}
