/*
 * Mimir accent, in place of LeafWiki's default green.
 * Same hue/saturation/lightness as src/style.css's --accent (#006fdc light,
 * #409cff dark) — kept in sync by hand, same as extension/src/theme.ts.
 * If Mimir's accent ever moves, update the two blocks below to match.
 */

:root {
  --primary: 210 100% 43%;
  --ring: 210 100% 43%;
  --brand: 210 100% 43%;
  --brand-dark: 210 100% 33%;
  --brand-light: 210 90% 85%;
}

.dark {
  --primary: 211 100% 63%;
  --ring: 211 100% 63%;
  --brand: 211 100% 63%;
  --brand-dark: 211 80% 48%;
  --brand-light: 211 90% 80%;
}

/* The print stylesheet forces light-mode variables regardless of theme;
   keep it matching the :root block above. */
@media print {
  html.dark,
  body.dark,
  .dark {
    --primary: 210 100% 43% !important;
    --brand: 210 100% 43% !important;
    --brand-dark: 210 100% 33% !important;
    --brand-light: 210 90% 85% !important;
    --ring: 210 100% 43% !important;
  }
}
