/* Sprint 13 — `pastel` legacy theme.
 *
 * Soft pinks + mint pastel palette on a near-white paper. Migrated
 * from public/styles/themes.css (Sprint 7 legacy axis).
 *
 * Two baked --name-on-paper hex values lift contrast above WCAG AA
 * for the team-color names on the pale paper — see the originating
 * Sprint 11 L5 A3 audit comments below.
 *
 * Self-contained per the Sprint 13 refactor contract: every theme
 * file ships all 13 primary tokens + card-back tokens.
 *
 * Authoring note: don't put leading `--name:` in comments — the L5
 * contrast linter regex matches the first occurrence.
 */

body[data-theme="pastel"] {
  --bg:          #f6e9ef;
  --paper:       #fff9fb;
  --ink:         #26313b;
  --ink-soft:    #68737d;
  --felt-mid:    #bde8d4;
  --card-bg:     #ffffff;
  --card-border: #eadde3;
  --red:         #d65f86;
  --spade:       #26313b;
  --accent:      #e77da6;
  --team-ns:     #64bea9;
  --team-ew:     #c184d1;
  --amber:       #f59e0b;
  --ink-on-team-ns: #000;
  --ink-on-team-ew: #000;
  /* Baked hex: color-mix(in oklab, #64bea9 70%, black) ≈ #417d75 → darkened to #3d7870 → 4.90:1 on #fff9fb */
  --name-on-paper-ns: #3d7870;
  /* Baked hex: color-mix(in oklab, #c184d1 70%, black) ≈ #7d5286 → checked 4.53:1 on #fff9fb */
  --name-on-paper-ew: #7d5286;
  /* Default mask emblem (shared). */
  --card-back-image: none;
  --card-back-mask: var(--shared-card-back-mask);
}
