/* The HeapStream brand, wired into MaterialX's `custom` palette slots.
   Replaces palette.css + custom.css (removed): the former only defined the
   `voodoo-*` accent names as indirection, and the latter restyled Material 9
   internals MaterialX has since restyled itself.

   `primary` drives the link colour, the active-nav pill and buttons; `accent`
   only drives hover and focus. Both values are undefined by the theme, so
   assigning them here is not a specificity fight -- which is exactly why
   `primary: black` + `accent: teal` does NOT work: `black` is a real theme
   palette that hard-sets --md-typeset-a-color to its own indigo. */
[data-md-color-primary="custom"] {
  --md-primary-fg-color:        #267871;  /* voodoo link dark green */
  --md-primary-fg-color--light: #329f95;
  --md-primary-fg-color--dark:  #1d5c56;
  --md-primary-bg-color:        hsla(0, 0%, 100%, 1);
  --md-primary-bg-color--light: hsla(0, 0%, 100%, 0.7);
}

[data-md-color-accent="custom"] {
  --md-accent-fg-color:             #329f95;  /* voodoo link light green */
  --md-accent-fg-color--transparent: #329f951a;
  --md-accent-bg-color:             hsla(0, 0%, 100%, 1);
  --md-accent-bg-color--light:      hsla(0, 0%, 100%, 0.7);
}

/* Link colour per scheme: the dark ground needs the brighter green to stay legible. */
[data-md-color-scheme="default"][data-md-color-primary="custom"] {
  --md-typeset-a-color: #267871;
}
[data-md-color-scheme="slate"][data-md-color-primary="custom"] {
  --md-typeset-a-color: #43c6b9;
}
