/**
 * Future optional palettes (Rose, Ocean) — structure only until product adds tokens + UI.
 * Contract matches marketing/dojo: html[data-theme="..."] with shared semantic vars where possible.
 * No gender-coded naming; labels are brand-neutral.
 */

html[data-theme="rose"] {
  color-scheme: light;
  --jg-theme-id: rose;
  /* Placeholder — tune with design */
  --jg-tint: rgba(160, 90, 110, 0.12);
}

html[data-theme="ocean"] {
  color-scheme: light;
  --jg-theme-id: ocean;
  --jg-tint: rgba(40, 100, 150, 0.12);
}

/* When these themes ship, extend css/jg-color-theme.css and dojo/css/jg-color-theme-dojo.css
   with full --bg / --text / etc. Do not rely on this file alone for production contrast. */
