/* The palette. THE definition of it — every other file references these.
   Loaded by bs.css, and linked directly by the pages that carry their own
   stylesheet (index.html, display.html).

   This exists because the colours used to be written out in full in a dozen
   files: darkening the card surface once meant a scripted sweep across all of
   them, and the copies still drifted. Add a colour here, never in a page.

   --input sits BELOW --panel on purpose, so a field still reads as inset now
   that cards are lifted off the page. */
:root {
  --red:     #ff2200;
  --bg:      #000;
  --panel:   #17191c;  /* cards, menus, raised surfaces */
  --panel-2: #1e2126;  /* chips and surfaces nested inside a panel */
  --input:   #0c0d0f;  /* form fields — deliberately darker than --panel */
  --border:  #2f343a;
  --text:    #e0e0e0;
  --muted:   #8b9199;
}
