/* Shared Winmail palette. Dioxus bundles this file; the marketing server embeds it.
   Fixed brand colors stay stable on promotional blue panels in either theme. */
:root {
  --wm-font: Hanken, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wm-blue: #245bc0;
  --wm-blue-bright: #2b67cc;
  --wm-blue-deep: #19478f;
  --wm-cream: #f5efdf;
  --wm-on-blue: #e3edff;
  --wm-brand-gradient: linear-gradient(155deg, var(--wm-blue-bright), var(--wm-blue));
  --wm-focus: #6299f1;
  --wm-success-solid: #237d55;
  --wm-error-solid: #a33c39;
}
:root, .app {
  --wm-bg: #faf8f3;
  --wm-surface: #ffffff;
  --wm-ink: #242832;
  --wm-muted: #5c677a;
  --wm-line: #e1e5ed;
  --wm-accent: #245bc0;
  --wm-accent-hover: #1d4ca4;
  --wm-on-accent: #ffffff;
  --wm-tint: #eaf0fb;
  --wm-soft: #f1eee6;
  --wm-cream-surface: #eee7d6;
  --wm-cream-ink: #706249;
  --wm-drop-border: #9eb7df;
  --wm-success: #237d55;
  --wm-success-tint: #edf7f0;
  --wm-error: #a33c39;
  --wm-error-tint: #fff0ed;
  --wm-error-border: #eac5bf;
  --wm-shadow: 0 12px 44px #173b7810;
  color-scheme: light;
}
:root[data-theme="dark"], .app.dark {
  --wm-bg: #141d2d;
  --wm-surface: #1c293e;
  --wm-ink: #f5f1e7;
  --wm-muted: #a9b7cc;
  --wm-line: #34435c;
  --wm-accent: #9dbfff;
  --wm-accent-hover: #bed4ff;
  --wm-on-accent: #14294c;
  --wm-tint: #263c60;
  --wm-soft: #253248;
  --wm-cream-surface: #37342e;
  --wm-cream-ink: #e3d6b7;
  --wm-drop-border: #5975a3;
  --wm-success: #83d4a8;
  --wm-success-tint: #203d35;
  --wm-error: #ffb3aa;
  --wm-error-tint: #412c31;
  --wm-error-border: #794c50;
  --wm-shadow: 0 12px 44px #00000026;
  color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --wm-bg: #141d2d;
    --wm-surface: #1c293e;
    --wm-ink: #f5f1e7;
    --wm-muted: #a9b7cc;
    --wm-line: #34435c;
    --wm-accent: #9dbfff;
    --wm-accent-hover: #bed4ff;
    --wm-on-accent: #14294c;
    --wm-tint: #263c60;
    --wm-soft: #253248;
    --wm-cream-surface: #37342e;
    --wm-cream-ink: #e3d6b7;
    --wm-drop-border: #5975a3;
    --wm-success: #83d4a8;
    --wm-success-tint: #203d35;
    --wm-error: #ffb3aa;
    --wm-error-tint: #412c31;
    --wm-error-border: #794c50;
    --wm-shadow: 0 12px 44px #00000026;
    color-scheme: dark;
  }
}
