/* Dark mode — most colors are driven by CSS custom properties in common.css
   (--fg/--bg/--bw-* swap automatically under prefers-color-scheme: dark).
   Only element-specific tweaks that aren't covered by those variables live here.
   Load AFTER all other CSS. */
@media (prefers-color-scheme: dark) {
  .post,
  div#outer,
  div#inner {
    background-color: var(--bg);
    color: var(--fg);
  }

  /* photos */
  a[name] { color: var(--fg); text-decoration: none; border: none }
  a[name]:hover { background: none }
  div#debug { background: #333; color: #ffe }
  p.meta { color: #aaa }
}
