/* w1link brand overlay — monochrome (near-black on light / white on dark).
 * Doubled selectors (:root:root / .dark.dark) out-specify the bundle's :root
 * defaults regardless of stylesheet order. The bundle ships a white
 * --primary-foreground in BOTH themes, so the dark theme must override it
 * too, otherwise a white primary button gets white text.
 * Deployed to /opt/white/brand/brand.css. */
:root:root {
  --primary: 240 6% 10%;
  --primary-foreground: 0 0% 100%;
  --ring: 240 6% 10%;
}
.dark.dark {
  --primary: 0 0% 98%;
  --primary-foreground: 240 6% 10%;
  --ring: 0 0% 98%;
}
