/* Media Gallery palette — light, indigo accent. Load AFTER tokens.css.
 * Values lifted verbatim from web/style.css's existing :root block.
 * CORRECTION: this app is NOT light-only. web/style.css lines 1486-1514 carry a
 * working html[data-theme="dark"] block overriding 25 variables. An earlier
 * version of this file wrongly claimed otherwise, which would have made any
 * tokenised colour resolve to its LIGHT value in dark mode. The dark block
 * below mirrors those real values. */
:root {
  --almasa-c-bg: #f6f6fb;
  --almasa-c-bg-deep: #eef0f6;
  --almasa-c-surface: #ffffff;
  --almasa-c-surface-2: #eef0f6;
  --almasa-c-surface-3: #f1faf5;
  --almasa-c-topbar: rgba(255, 255, 255, 0.9);
  --almasa-c-text: #191a2b;
  --almasa-c-text-soft: #4a4d66;
  --almasa-c-text-muted: #6b6e86;
  --almasa-c-text-faint: #8a8db0;
  --almasa-c-border: #e7e8f4;
  --almasa-c-border-strong: #d5d7f3;
  --almasa-c-danger: #c0392b;
  --almasa-c-danger-bg: #fdeaea;
  --almasa-c-success: #159b74;
  --almasa-c-success-bg: #f1faf5;
  --almasa-accent: #2e3192;
  --almasa-accent-strong: #24276f;
  --almasa-accent-shadow: rgba(46, 49, 146, 0.28);
  --almasa-c-scrim: rgba(13, 14, 40, 0.5);
}

/* Dark theme — values taken verbatim from web/style.css html[data-theme="dark"].
 * Note this app uses html[data-theme] (not :root[data-theme]) in its own sheet;
 * :root and html are the same element, so either selector matches. */
:root[data-theme="dark"] {
  --almasa-c-bg: #101120;
  --almasa-c-bg-deep: #0b0c17;
  --almasa-c-surface: #181a2c;
  --almasa-c-surface-2: #21233a;
  --almasa-c-surface-3: #22243a;
  --almasa-c-topbar: rgba(20, 22, 38, 0.85);
  --almasa-c-text: #ecedfb;
  --almasa-c-text-soft: #c2c4dd;
  --almasa-c-text-muted: #9a9dc0;
  --almasa-c-text-faint: #7b7ea3;
  --almasa-c-border: #262844;
  --almasa-c-border-strong: #34375c;
  --almasa-c-danger: #ef6a5c;
  --almasa-c-danger-bg: #2a1a1a;
  --almasa-c-success: #35c896;
  --almasa-c-success-bg: #10241d;
  --almasa-accent: #7a7ee6;
  --almasa-accent-strong: #6367d6;
  --almasa-accent-shadow: rgba(122, 126, 230, 0.34);
  --almasa-accent-ink: #101120;
  --almasa-c-scrim: rgba(6, 7, 20, 0.72);   /* white on #7a7ee6 is 3.53; this is 5.08 */
}
