/*
  Gantt Chart Color Palette — "Jewel 8" (v2)
  --------------------------------------------------
  9 hues x 3 variants (light / medium / dark)
  - grey is reserved for the Meetings & Milestones category
  - 8 colorful hues follow: 6 in use + blue / violet / crimson as spares
  - Shades are tuned to read as DIFFERENT from one another (Batch W):
    medium is the unchanged anchor per hue; light and dark spread
    away from it so the three shades of a family are distinguishable
    at a glance (the old values only targeted white-text contrast and
    sat ~1.3:1 apart). Bar label color adapts per shade at runtime
    (js/color.js textColorFor), so pale lights get dark text.

  Usage: var(--vermillion-medium), var(--teal-dark), etc.
  NOTE: shade renamed base -> medium. See handoff/README.md for the
  two small JS touch-ups (palette.js) this requires.
*/

:root {
  /* 0. Grey — Meetings & Milestones */
  --grey-light:  #99A2AE; /* lightened: clearly distinct from medium (tentative/Requested) */
  --grey-medium: #545C69;
  --grey-dark:   #3A414C;

  /* 1. Vermillion (replaces Amber — max-chroma, no more drab orange) */
  --vermillion-light:  #C67C66;
  --vermillion-medium: #C12C00;
  --vermillion-dark:   #7F1D00;

  /* 2. Teal */
  --teal-light:  #38B6B3;
  --teal-medium: #02726F;
  --teal-dark:   #004B49;

  /* 3. Fuchsia (replaces Citrine gold) */
  --fuchsia-light:  #C492BC;
  --fuchsia-medium: #AA3297;
  --fuchsia-dark:   #7A206C;

  /* 4. Azure */
  --azure-light:  #51A2CA;
  --azure-medium: #026B9F;
  --azure-dark:   #005078;

  /* 5. Emerald */
  --emerald-light:  #3DA476;
  --emerald-medium: #007541;
  --emerald-dark:   #004728;

  /* 6. Blue (spare) */
  --blue-light:  #86A8EB;
  --blue-medium: #235ED3;
  --blue-dark:   #1A459A;

  /* 7. Violet (spare) */
  --violet-light:  #B298E1;
  --violet-medium: #774ACB;
  --violet-dark:   #582FA4;

  /* 8. Crimson (spare) */
  --crimson-light:  #CE93A0;
  --crimson-medium: #C12547;
  --crimson-dark:   #8E1630;

  /* App accent — violet (buttons, toggles, chips, today marker). Pinned to the original
     violet shades on purpose: the Batch W palette rework retuned the FAMILY shades for
     bar-vs-bar distinction, but UI chrome keeps its established colors. */
  --accent-light: #885DDF;
  --accent:       #774ACB;
  --accent-dark:  #6232B2;
  --accent-tint:  #F3EFFA;
}
