/* Suite brand palette for the docs. Material applies its palette variables on
   body[data-md-color-*], so these rules match that level to override them:
   the marketing site's orange accent (#f97316), a darker step on the light
   scheme for link contrast on white, and a neutral near-black header instead
   of Material's blue-tinted greys. */
body[data-md-color-scheme="default"] {
  --md-primary-fg-color: #050505;
  --md-primary-fg-color--light: #2b2b2e;
  --md-primary-fg-color--dark: #000000;
  --md-accent-fg-color: #ea580c;
  --md-accent-fg-color--transparent: rgba(234, 88, 12, 0.1);
}

body[data-md-color-scheme="slate"] {
  --md-primary-fg-color: #050505;
  --md-primary-fg-color--light: #2b2b2e;
  --md-primary-fg-color--dark: #000000;
  --md-accent-fg-color: #f97316;
  --md-accent-fg-color--transparent: rgba(249, 115, 22, 0.12);
}

/* Material's `black` palette hardcodes a blue-tinted header; keep it neutral. */
[data-md-color-primary="black"] .md-header,
[data-md-color-primary="black"] .md-tabs {
  background-color: var(--md-primary-fg-color);
}

/* Material maps primary `black` to blue typeset links; retarget to the suite
   accent at the palette's own specificity. */
body[data-md-color-primary="black"] {
  --md-typeset-a-color: #ea580c;
}

body[data-md-color-scheme="slate"][data-md-color-primary="black"] {
  --md-typeset-a-color: #fb923c;
}
