/* Site theme: edit fonts, colours, and reading width here.
   Run python3 tools/update-site.py after changing either stylesheet. */

:root {
  --bg:         #fbfaf8;
  --bg-panel:   #f3f1ec;
  --ink:        #1c1b19;
  --ink-soft:   #55524c;
  --ink-faint:  #86827a;
  --rule:       #ddd9d1;
  --accent:     #7a2e2e;
  --accent-lit: #a04040;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
           Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
           "Helvetica Neue", Arial, sans-serif;
  --mono:  ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --measure: 44rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:         #16161a;
    --bg-panel:   #1e1e23;
    --ink:        #e7e4de;
    --ink-soft:   #a9a49b;
    --ink-faint:  #7c776e;
    --rule:       #2e2e35;
    --accent:     #d98a8a;
    --accent-lit: #eaa3a3;
  }
}

:root {
  --poem-title:   #1a1a1a;
  --poem-body:    #2c2c2c;
  --poem-rule:    #aaaaaa;
  --poem-math:    #444444;
  --poem-caption: #777777;
  /* the LaTeX loads palatino; keep it first here even though the site
     stack leads with Iowan Old Style */
  --poem-serif: Palatino, "Palatino Linotype", "Book Antiqua",
                "Iowan Old Style", Georgia, serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --poem-title:   #ece9e3;
    --poem-body:    #d6d2ca;
    --poem-rule:    #4c4c55;
    --poem-math:    #c8c4bc;
    --poem-caption: #8b867d;
  }
}
