/* Kevra brand palette overrides for MkDocs Material.
   Primary: #1a1925 (dark base), Accent: #ff771e (orange).
   The site is dark-only. The light-scheme block below is commented out
   in case we ever want to re-enable a light/dark toggle. */

/* --- Light scheme (disabled). To re-enable, uncomment this block AND
       restore the second palette entry in mkdocs.yml. ---

:root {
  --md-primary-fg-color:        #1a1925;
  --md-primary-fg-color--light:  #2a2935;
  --md-primary-fg-color--dark:   #0a0915;
  --md-primary-bg-color:         #ffffff;
  --md-primary-bg-color--light:  #ffffffb3;

  --md-accent-fg-color:          #ff771e;
  --md-accent-fg-color--transparent: #ff771e1a;
  --md-accent-bg-color:          #ffffff;
  --md-accent-bg-color--light:   #ffffffb3;

  Body-text links: burnt orange, distinguishable from body text on
  white, leaves the brighter accent free for the hover state.
  --md-typeset-a-color:          #b34e00;
}
*/

[data-md-color-scheme="slate"] {
  --md-primary-fg-color:        #1a1925;
  --md-accent-fg-color:          #ff771e;
  --md-accent-fg-color--transparent: #ff771e1a;

  /* Body-text links: lightened orange so it reads against the slate dark bg
     while staying distinct from the brighter accent used on hover. Without
     this override Material falls back to --md-primary-fg-color, which is
     near-black on near-black (~1.06:1 contrast). */
  --md-typeset-a-color:          #ff9a57;
}
