/* =========================================================================
   spectrum.k8box.io — per-domain accent override on top of
   `assets/css/base.css`. Layout, typography, components, and the desktop
   widening all live in the shared base. This file only carries the
   indigo-purple accent palette.

   Sibling sites follow the same minimal-override pattern:
     k8box.io          → blue → mint
     atrium.k8box.io   → violet
     tally.k8box.io    → amber
     tcwlab.com        → orange
     spectrum.k8box.io → indigo-purple  (this file)
   ========================================================================= */

:root {
  --accent: #5b3df0;
  --accent-soft: #9d8aff;
  --accent-glow: rgba(91, 61, 240, 0.16);
  --accent-tint: rgba(91, 61, 240, 0.06);
  --accent-paper: #f6f6fb;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #9d8aff;
    --accent-soft: #b3a4ff;
    --accent-glow: rgba(157, 138, 255, 0.18);
    --accent-tint: rgba(157, 138, 255, 0.05);
    --accent-paper: #1a1a26;
  }
}
