/* "202608-black" — the site's own previous default, kept behind a door.
   Scoped to html[data-theme="202608-black"], which js/theme.js sets.

   This is the design that shipped on 2026-08-01 and was the default until 2026-09-22,
   when Kris made the phosphor palette the default instead ("anyway, this is nice. make
   it default"). It is preserved here rather than deleted, because old designs living on
   behind quiet doors is the whole point of this site's theme switcher.

   It carries BOTH halves of what it used to be: the dark tokens that sat in :root, and
   the light ones from @media (prefers-color-scheme: light). site.css no longer has a
   light-mode block at all — the default is now a dark palette unconditionally — so this
   file is the only place that light design still exists. */
html[data-theme="202608-black"]{
  color-scheme:dark light;
  --bg:#0a0a0b;
  --card:#111113;
  --ink:#f4f4f2;
  --dim:#8a8a86;
  --line:#26262a;
  --body:#cfcfca;
}
@media (prefers-color-scheme: light){
  html[data-theme="202608-black"]{
    --bg:#f3f2ee;
    --card:#ffffff;
    --ink:#141414;
    --dim:#6b6b66;
    --line:#e2e0d8;
    --body:#3a3a36;
  }
}
