/*! brand.css — quantabytes.com. Orange sampled from the logo (#eb6f00).
 *  That orange reaches only 3.09:1 on white, so it stays decorative and
 *  links use the darkened --accent, which clears AA at 4.77:1. */

:root {
  --brand: #eb6f00;
  --accent: #b85700;
}

@media (prefers-color-scheme: dark) {
  :root {
    --brand: #eb6f00;
    --accent: #ff9a3c;
  }
}
