/* =============================================================================
   Theme — HAL 9000 SCIENCE is a single deep-space-dark surface
   =============================================================================
   The app has ONE theme: the ship's science computer, dark by construction.
   The @theme block in app/assets/tailwind/application.css already declares the
   HAL palette as the default. The layout still pins <html data-theme="dark">
   (and browsers may request `prefers-color-scheme: dark`), so this block simply
   RE-ASSERTS the same HAL tokens under [data-theme="dark"] to guarantee nothing
   drifts back toward a light or green palette by source order. There is no
   light theme; the two blocks are intentionally identical.

   This file is imported by app/assets/tailwind/application.css AFTER the @theme
   block, so these declarations win by source order (equal specificity to :root).
   ============================================================================= */

[data-theme="dark"] {
  /* Deep-space grounds */
  --color-canvas: #05060A;
  --color-surface: #0A0C12;
  --color-surface-muted: #10131C;

  /* Ink & structure — cold near-white on the void, thin glowing rules */
  --color-ink: #E6E9F0;
  --color-muted: #97A0B4;
  --color-faint: #626B80;
  --color-rule: #1E2430;
  --color-soft-rule: #151A24;

  /* Accent — the HAL red (the eye) */
  --color-primary: #E8331C;
  --color-primary-dark: #FF5341;
  --color-signal-wash: #1F0E0D;
  --color-phosphor: #FF2D1A;

  /* Console panels */
  --color-panel: #05060A;
  --color-panel-raised: #0C0F17;
  --color-panel-line: #1A2130;
  --color-term-text: #C3D0E0;
  --color-term-muted: #66748C;

  /* Secondary data accents + semantic status */
  --color-accent: #E0A44A;
  --color-cyan: #35D6E8;
  --color-sell: #FF4D3D;
  --color-info: #5AB0FF;
  --color-buy: #3BE0A0;
  --color-buy-bg: #0A1A16;
  --color-buy-text: #58E6B4;
  --color-sell-bg: #1E0C0A;
  --color-sell-text: #FF6A5A;
  --color-trim-bg: #1F0E0D;
  --color-trim-text: #FF7A66;
  --color-neutral-bg: #10131C;
  --color-neutral-text: #97A0B4;
  --color-null: #E0A44A;
  --color-null-bg: #1B140A;
  --color-null-text: #E8B968;

  color-scheme: dark;
}

/* Theme toggle icons are unused (single theme) but kept harmless if referenced. */
.theme-toggle__sun { display: none; }
.theme-toggle__moon { display: none; }
