/* ============================================================
   GynJess — Legacy token compatibility
   ------------------------------------------------------------
   Projects built before the Peacock palette reference the old
   warm gold/rose token names (--rose-600, --plum, --gold as a
   large fill, etc.). Those names no longer carry values, so
   without this file those pages would render with invalid
   colors rather than converting.

   Every legacy name below is mapped to its Peacock equivalent.
   Existing markup therefore CONVERTS automatically — no page
   edits required. New work should use the canonical names in
   colors.css; these aliases exist only for migration.

   Safe to delete once no project references a --rose-* token.
   ============================================================ */

:root {
  /* Old rose ramp → teal ramp (rose carried "primary/action") */
  --rose:     var(--teal-600);
  --rose-100: var(--teal-100);
  --rose-200: var(--teal-200);
  --rose-300: var(--teal-300);
  --rose-400: var(--teal-400);
  --rose-500: var(--teal-500);
  --rose-600: var(--teal-600);
  --rose-700: var(--teal-700);
  --rose-800: var(--teal-800);
  --rose-900: var(--teal-900);

  /* Old dark surface → deep teal */
  --plum: var(--teal-900);

  /* Purple-era names used by the pre-Peacock marketing site */
  --purple:     var(--teal-600);
  --purple-600: var(--teal-600);
  --purple-700: var(--teal-700);
  --magenta:    var(--color-accent);

  /* Old warm neutrals → cool equivalents */
  --gold-paper: var(--paper);
}
