/* 01-settings/_palette.css — RAW pigments. Hex literals live ONLY here, named by pigment.
   Direction A = gantry's tui/theme.rs ground, re-tinted to phosphor amber/green accents. */
:root {
  /* surfaces — gantry's field → panel ramp, verbatim.
     Every gray below is a multiple of 8; the surfaces step by exactly 8 (8/16/24/32). */
  --field:     #080808;  /* the near-black everything floats on (gantry BG, 8) */
  --panel:     #101010;  /* a resting panel (gantry PANEL, 16) */
  --panel-hi:  #181818;  /* a raised/selected panel (gantry PANEL_HI, 24) */
  --rule:      #303030;  /* hairline / box-drawing stroke (gantry LINE, 48) */
  --rule-hi:   #484848;  /* a lit/focused rule (72) */

  /* text — gantry's gray ramp, dim → bright */
  --gray-dim:    #686868; /* gantry DIM   — ids, hints, metrics (104) */
  --gray-muted:  #909090; /* gantry MUTED — secondary (144) */
  --gray-text:   #b8b8b8; /* gantry TEXT  — primary prose (184) */
  --gray-bright: #e8e8e8; /* gantry BRIGHT— the rare emphasis (232) */

  /* accents — phosphor swap (gantry's blue → amber; green warmed) */
  --amber:       #ffb000; /* THE live/active/link highlight (replaces gantry ACCENT blue) */
  --amber-bright:#ffd070; /* lit hotkey / hover */
  --amber-dim:   #a06800; /* a quiet amber, for under-glow */
  --green:       #3fd17a; /* success / done (phosphor green) */
  --red:         #d47070; /* failure / destructive (gantry BAD) */
  --gold:        #c9a227; /* attention — dimmer than amber so it never competes */
  --shadow:      #000000; /* the hard drop-shadow cell under a dropdown (gantry VOID, 0) */
}
