/* palettes.css — A/B colour variants. Only tokens change; no selector here
   touches layout, so the variants differ by colour alone.

   Each palette sets the same seven tokens used by hanny-and-andra.css:
   --bg, --ink, --muted, --ink-soft, --accent, --panel, --keyline.
   --ink-soft is the "bright, but not the accent" tone the cover's guest line and the
   countdown's city use: 70% of the palette's accent mixed with 30% of its ink, so it is
   built to sit between --ink and --accent.
   Body text stays above 4.5:1 against --bg, and every --accent is light enough
   to carry the dark ink used by the filled button and the copy-button flash. */

/* Maroon — deep maroon ground with a warm gold accent. */
[data-palette="maroon"] {
  --bg: #2a0d12;
  --ink: #f7ece4;
  --muted: #d3b3ad;
  --ink-soft: #e8c29a;
  --accent: #e2b07a;
  --panel: rgba(42, 13, 18, 0.55);
  --keyline: rgba(226, 176, 122, 0.42);
}

/* Blue — dark blue ("Blue Donker") ground with a cool ice accent. */
[data-palette="blue"] {
  --bg: #0d1b2e;
  --ink: #eef3fa;
  --muted: #aebdd2;
  --ink-soft: #bdd5f2;
  --accent: #a8c8ef;
  --panel: rgba(13, 27, 46, 0.55);
  --keyline: rgba(168, 200, 239, 0.4);
}

/* Gold — near-black ground with a metallic gold accent. The reference look. */
[data-palette="gold"] {
  --bg: #0b0a08;
  --ink: #f6efe3;
  --muted: #c9bda9;
  --ink-soft: #e1c687;
  --accent: #d8b45f;
  --panel: rgba(11, 10, 8, 0.55);
  --keyline: rgba(216, 180, 95, 0.45);
}
