/* ===========================================================================
   Theme: Parchment — KOSC's original palette, unchanged.
   Warm paper, classic blue links, brick-orange accent. Colour only; layout
   and typography live in style.css and are shared with the other site.
   =========================================================================== */

:root {
  color-scheme: light dark;

  --bg:            #fbfaf6;
  --bg-code:       #f1efe7;
  --text:          #1c1b18;
  --muted:         #5c5a52;
  --faint:         #87857b;
  --link:          #1a3ea8;
  --link-visited:  #6a3a9a;
  --rule:          #d9d5c7;
  --mark:          #b54b00;
  --highlight:     #fcf3a0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:            #17181b;
    --bg-code:       #20221f;
    --text:          #dcdacf;
    --muted:         #a3a194;
    --faint:         #807e72;
    --link:          #8fb1f2;
    --link-visited:  #c4a6ea;
    --rule:          #34362f;
    --mark:          #e08a4a;
    --highlight:     #4d4520;
  }
}
