/* "2026-coal" — the site's own previous default, kept behind a door.
   It shipped as "202608-black" and was renamed on 2026-09-22 when theme names became
   YYYY-nickname; both old names still resolve through the alias map in js/theme.js.
   Scoped to html[data-theme="2026-coal"], 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). Both 2026 themes do this and
   every theme made from now on will; the SIX historical ones deliberately do not, because
   each of those designs only ever existed in one palette (Kris, 2026-09-22). */
html[data-theme="2026-coal"]{
  color-scheme:light dark;
  --bg:#0a0a0b;
  --card:#111113;
  --ink:#f4f4f2;
  --dim:#8a8a86;
  --line:#26262a;
  --body:#cfcfca;
}
@media (prefers-color-scheme: light){
  html[data-theme="2026-coal"]{
    --bg:#f3f2ee;
    --card:#ffffff;
    --ink:#141414;
    --dim:#6b6b66;
    --line:#e2e0d8;
    --body:#3a3a36;
  }
}
