/* Tsuzuki brand colours — terracotta, matching the 続 logo/favicon mark.
   Overrides Material's default (indigo) primary/accent for both the light
   (default) and dark (slate) schemes.

   No palette `primary` is named, so Material falls back to `indigo` and sets the
   dark-mode link colour via `[data-md-color-scheme=slate][data-md-color-primary=indigo]`
   (two attribute selectors) — which out-specifies any scheme-only override. The
   link colour is therefore forced with `!important`; the other brand vars win on
   normal cascade order. */

:root {
  --md-primary-fg-color: #d97757;
  --md-primary-fg-color--light: #e3947b;
  --md-primary-fg-color--dark: #c15f3f;
  --md-accent-fg-color: #c15f3f;
}

body[data-md-color-scheme="default"] {
  --md-primary-fg-color: #d97757;
  --md-primary-fg-color--light: #e3947b;
  --md-primary-fg-color--dark: #c15f3f;
  --md-accent-fg-color: #c15f3f;
  --md-typeset-a-color: #c15f3f !important;
}

body[data-md-color-scheme="slate"] {
  --md-primary-fg-color: #d97757;
  --md-primary-fg-color--light: #e3947b;
  --md-primary-fg-color--dark: #c15f3f;
  --md-accent-fg-color: #e3947b;
  /* Warm the dark-mode link colour to match the brand. */
  --md-typeset-a-color: #e3947b !important;
}
