/**
 * Ignition Design Tokens
 * Extracted from brand reference images (retro-futuristic palette)
 * All syntax/text colors validated against WCAG contrast minimums.
 *
 * Generated by: bun run scripts/extract-palette.ts
 * Do not edit manually — re-run the script to regenerate.
 */

/* === Raw Palette Swatches === */
:root {
  --palette-sky-teal: #6ba89a;
  --palette-sky-sage: #8cbfb0;
  --palette-sky-pale: #a8d4c6;
  --palette-amber: #c8a050;
  --palette-wheat: #d4b868;
  --palette-ochre: #b88a3a;
  --palette-vermillion: #c44d2b;
  --palette-sienna: #d4603a;
  --palette-rust: #a43820;
  --palette-ivory: #f0e4d0;
  --palette-cream: #e8dcca;
  --palette-sand: #d0c4ae;
  --palette-sage: #8aaa90;
  --palette-sage-mid: #7a9a80;
  --palette-sage-deep: #6a8a70;
  --palette-void: #1e2a28;
  --palette-deep-teal: #2a3a38;
  --palette-dark-olive: #3a4a40;
  --palette-olive: #4a5a48;
  --palette-teal: #5aafa0;
  --palette-teal-deep: #4a9a8a;
}

/* === Dark Mode (default) === */
:root {
  /* surface */
  --surface-bg: #1e2a28;
  --surface-bg-elevated: #2a3a38;
  --surface-bg-card: #2a3a38;
  --surface-bg-card-hover: #3a4a40;
  --surface-bg-overlay: rgba(30, 42, 40, 0.85);
  --surface-bg-input: #1e2a28;
  --surface-border: #3a4a40;
  --surface-border-subtle: rgba(138, 170, 144, 0.15);

  /* text */
  --text-primary: #f0e4d0;
  --text-secondary: #d0c4ae;
  --text-muted: #8aaa90;
  --text-dim: #6a8a70;
  --text-inverse: #1e2a28;

  /* brand */
  --brand: #c44d2b;
  --brand-light: #d4603a;
  --brand-dark: #a43820;
  --brand-foreground: #f0e4d0;
  --brand-glow: rgba(196, 77, 43, 0.2);

  /* accent */
  --accent-warm: #c8a050;
  --accent-gold: #d4b868;
  --accent-teal: #5aafa0;
  --accent-sage: #8aaa90;
  --accent-sky: #8cbfb0;

  /* status */
  --status-ok: #5aaf78;
  --status-changed: #d4b868;
  --status-failed: #c44d2b;
  --status-running: #5aafa0;
  --status-pending: #6a8a70;

  /* syntax */
  --syntax-keyword: #c44d2b;
  --syntax-string: #d4b868;
  --syntax-function: #5aafa0;
  --syntax-comment: #6a8a70;
  --syntax-type: #c8a050;
  --syntax-variable: #e8dcca;
  --syntax-literal: #d4603a;
  --syntax-operator: #8aaa90;
  --syntax-property: #8cbfb0;
  --syntax-tag: #d4603a;
  --syntax-attribute: #d0c4ae;
  --syntax-regexp: #6ba89a;
  --syntax-punctuation: #7a9a80;
  --syntax-constant: #d4b868;
  --syntax-number: #d4603a;
  --syntax-background: #1e2a28;
  --syntax-foreground: #e8dcca;
  --syntax-selection: #2a4540;
  --syntax-cursor: #c44d2b;
  --syntax-line-highlight: #233532;
}

/* === Light Mode === */
[data-theme="light"],
.light {
  --surface-bg: #f0e4d0;
  --surface-bg-elevated: #ffffff;
  --surface-bg-card: #ffffff;
  --surface-bg-card-hover: #e8dcca;
  --surface-bg-overlay: rgba(240, 228, 208, 0.9);
  --surface-bg-input: #ffffff;
  --surface-border: #d0c4ae;
  --surface-border-subtle: rgba(106, 138, 112, 0.2);
  --text-primary: #1e2a28;
  --text-secondary: #3a4a40;
  --text-muted: #6a8a70;
  --text-dim: #6c9574;
  --text-inverse: #f0e4d0;
  --syntax-background: #f8f2e8;
  --syntax-foreground: #2a3a38;
  --syntax-keyword: #a43820;
  --syntax-string: #64732d;
  --syntax-function: #2a7a6e;
  --syntax-comment: #6e9175;
  --syntax-type: #836829;
  --syntax-variable: #2a3a38;
  --syntax-literal: #b84a2a;
  --syntax-operator: #56745b;
  --syntax-property: #467464;
  --syntax-tag: #a43820;
  --syntax-attribute: #6a6a50;
  --syntax-regexp: #3f7668;
  --syntax-punctuation: #56745b;
  --syntax-constant: #836829;
  --syntax-number: #b84a2a;
  --syntax-selection: #e0e8dd;
  --syntax-line-highlight: #efeee4;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --surface-bg: #f0e4d0;
    --surface-bg-elevated: #ffffff;
    --surface-bg-card: #ffffff;
    --surface-bg-card-hover: #e8dcca;
    --surface-bg-overlay: rgba(240, 228, 208, 0.9);
    --surface-bg-input: #ffffff;
    --surface-border: #d0c4ae;
    --surface-border-subtle: rgba(106, 138, 112, 0.2);
    --text-primary: #1e2a28;
    --text-secondary: #3a4a40;
    --text-muted: #6a8a70;
    --text-dim: #6c9574;
    --text-inverse: #f0e4d0;
    --syntax-background: #f8f2e8;
    --syntax-foreground: #2a3a38;
    --syntax-keyword: #a43820;
    --syntax-string: #64732d;
    --syntax-function: #2a7a6e;
    --syntax-comment: #6e9175;
    --syntax-type: #836829;
    --syntax-variable: #2a3a38;
    --syntax-literal: #b84a2a;
    --syntax-operator: #56745b;
    --syntax-property: #467464;
    --syntax-tag: #a43820;
    --syntax-attribute: #6a6a50;
    --syntax-regexp: #3f7668;
    --syntax-punctuation: #56745b;
    --syntax-constant: #836829;
    --syntax-number: #b84a2a;
    --syntax-selection: #e0e8dd;
    --syntax-line-highlight: #efeee4;
  }
}
