/*
 * Schedulance brand for the keycloak.v3 account console (static, no build).
 *
 * Supplies only the --st-brand values consumed by snowtree-base/account/structural.css;
 * the PatternFly token plumbing lives in the base. Every value routes through
 * the --sched-* tokens in the build-copied css/tokens.css - no brand hex is re-typed, so the
 * console can never drift from the component library. Account dark mode toggles via the
 * .pf-v5-theme-dark class (kcDarkModeClass), so the dark brand reads the canonical
 * --sched-brand-dark token rather than the prefers-color-scheme flip.
 *
 * CANONICAL token source: src/Snowtree.Schedulance.Razor/wwwroot/css/tokens.css
 */
:root {
  --st-brand: var(--sched-brand);
  --st-brand-hover: var(--sched-brand-hover);
}

.pf-v5-theme-dark {
  --st-brand: var(--sched-brand-dark);
  --st-brand-hover: var(--sched-brand-hover-dark);
}
