/**
 * Harvest — palette IDENTITY colours, for the shopper-facing switcher (FE-01).
 *
 * WHY THESE CANNOT BE THE ORDINARY TOKENS, WHICH IS THE ONLY REASON THIS FILE EXISTS.
 * Every other colour in this theme is read from --hrv-* on the ACTIVE palette. A switcher has to
 * paint all five palettes AT ONCE, next to each other, on a page rendered in one of them, and CSS
 * gives no way to read a custom property out of a selector that is not currently matching. So the
 * five identity pairs have to exist unconditionally on :root, which is what this file is.
 *
 * IT LIVES IN tokens/ BECAUSE IT IS A TOKEN FILE, NOT TO GET PAST GATE B. The gate scans
 * components/*.css and pages/*.css - the places where a literal colour means "someone bypassed
 * the palette system". A palette's own defining hex is not a bypass; it is the definition, and
 * tokens/_palette-*.css is full of them for exactly that reason. What WOULD be a bypass is
 * putting these in components/_palette-switcher.css, and that file accordingly contains none.
 *
 * THE DUPLICATION IS REAL AND IT IS GATED. Each pair below restates a value that
 * tokens/_palette-<name>.css already declares, because no CSS mechanism can derive it. A silent
 * copy that can drift is how a switcher ends up advertising a colour the palette stopped using,
 * so scripts/harvest/swatch-sync-check.py asserts every pair here against its source file and CI
 * runs it. Change a palette's --hrv-bg or --hrv-accent and that check fails until this file
 * follows.
 *
 * HONEY IS PROVISIONAL, AS EVERYWHERE ELSE. tokens/_palette-honey.css carries invented values
 * pending design sign-off (ClickUp 869ea73nn); these mirror them and inherit the same status. The
 * sync check keeps them mirroring whatever that file ends up saying.
 */
:root {
  --hrv-swatch-wheat-bg: #FBF6EC;
  --hrv-swatch-wheat-accent: #C08A2D;

  --hrv-swatch-basil-bg: #F3F6EF;
  --hrv-swatch-basil-accent: #4C7A3F;

  --hrv-swatch-tomato-bg: #FBF2EE;
  --hrv-swatch-tomato-accent: #C2452D;

  --hrv-swatch-plum-bg: #F7F1F5;
  --hrv-swatch-plum-accent: #7A3E6E;

  --hrv-swatch-honey-bg: #FDF5E4;
  --hrv-swatch-honey-accent: #A86B18;
}
