/* Preset: quiet-paper — a literary serif page, warm as paper, with a muted
   moss accent. Swap looks with `crofty theme set <name>`; delete this file to
   return to the default theme. Restyling can't break the output contract —
   `crofty doctor` still guarantees your site owns its content. */

:root {
  --bg: #fcfbf7;        /* page background */
  --ink: #211e1a;       /* body text and headings */
  --muted: #6f6a61;     /* dates, captions, secondary text */
  --line: #e4e0d8;      /* rules, borders, link underlines */
  --accent: #4a6a52;    /* muted moss — links on hover, marks */
  --code-bg: #f2efe7;   /* inline code and code blocks */

  --measure: 34rem;     /* reading-column width */

  --font-body: Charter, "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-chrome: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17150f;
    --ink: #e9e5dc;
    --muted: #9a9488;
    --line: #322e27;
    --accent: #8fae93;
    --code-bg: #221f18;
  }
}
