/* 01-settings/_palette.css — RAW pigments. Hex literals live ONLY here, named by pigment.
   Direction A = loom's tui/theme.rs ground, re-tinted to phosphor amber/green accents. */
:root {
  /* surfaces — loom's field → panel ramp, verbatim */
  --field:     #0c0c0c;  /* the near-black everything floats on (loom BG) */
  --panel:     #161616;  /* a resting panel (loom PANEL) */
  --panel-hi:  #222222;  /* a raised/selected panel (loom PANEL_HI) */
  --rule:      #303030;  /* hairline / box-drawing stroke (loom LINE) */
  --rule-hi:   #4a4a4a;  /* a lit/focused rule */

  /* text — loom's gray ramp, dim → bright */
  --gray-dim:    #666666; /* loom DIM   — ids, hints, metrics */
  --gray-muted:  #8c8c8c; /* loom MUTED — secondary */
  --gray-text:   #b8b8b8; /* loom TEXT  — primary prose */
  --gray-bright: #ececec; /* loom BRIGHT— the rare emphasis */

  /* accents — phosphor swap (loom's blue → amber; green warmed) */
  --amber:       #ffb000; /* THE live/active/link highlight (replaces loom 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 (loom BAD) */
  --gold:        #c9a227; /* attention — dimmer than amber so it never competes */
  --shadow:      #050505; /* the hard drop-shadow cell under a dropdown */
}
