/* =========================================================================
   tally.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 amber accent palette.

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

:root {
  --accent: #a96b1b;
  --accent-soft: #e6a155;
  --accent-glow: rgba(169, 107, 27, 0.16);
  --accent-tint: rgba(169, 107, 27, 0.06);
  --accent-paper: #faf6f0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #e6a155;
    --accent-soft: #f0b370;
    --accent-glow: rgba(230, 161, 85, 0.18);
    --accent-tint: rgba(230, 161, 85, 0.05);
    --accent-paper: #1f1a13;
  }
}
