/*
 * Link and accent colours, so the site is not stock pydata blue.
 *
 * sphinx-book-theme sits on pydata-sphinx-theme, which stamps `data-theme`
 * on <html> for both light and dark -- there is no unset third state to
 * cover, so each block is complete on its own.
 */
html[data-theme="light"] {
    --pst-color-primary: #0f766e;
    --pst-color-link: #0f766e;
    --pst-color-link-hover: #115e59;
    --pst-color-accent: #b45309;
}

html[data-theme="dark"] {
    --pst-color-primary: #5eead4;
    --pst-color-link: #5eead4;
    --pst-color-link-hover: #99f6e4;
    --pst-color-accent: #fbbf24;
}
