
/* v3.7.242: Muted RWB palette. Overrides earlier :root token values
   with reduced-saturation variants. Reds and blues are ~30-40% less
   saturated; cream slightly warmer; ink slightly warmer. Existing CSS
   rules using var(--red), var(--blue), etc. automatically pick up the
   new values site-wide. Placed at end of <head> so it wins cascade
   order against earlier inline :root blocks. */
:root {
  --red: #8B2E3F;
  --accent: #8B2E3F;
  --red-bg: #8B2E3F;
  --blue-bg: #3C3B6E;
  --surface-hover: rgba(0, 0, 0, 0.06);
  --accent-strong: #8B1A28;
  --blue: #3F4C6B;
  --navy: #2C3754;
  --paper: #F4EFE6;
  --ink: #1F1B16;
  --ink-soft: #524A3D;
  --ink-muted: #7B7264;
  --rule: #DDD5C5;
}
html[data-theme="dark"] {
  --red: #D77C87;
  --accent: #D77C87;
  --red-bg: #8B2E3F;
  --blue-bg: #3C3B6E;
  --surface-hover: rgba(255, 255, 255, 0.08);
  --accent-strong: #8B1A28;
  --blue: #9FA8C2;
  --navy: #5C6B9E;
  --paper: #1E1B17;
  --ink: #E8E2D0;
  --ink-soft: #B5AC97;
  --ink-muted: #a8a8a8;
  --rule: #3F3A33;
}
