/* Every colour and type face the site uses. Nothing here draws anything;
   the rules that do are in base.css and the page stylesheets. */

:root {
      --desk: #111111;
      --paper: #f9f9f7;
      --paper-dark: #efefe9;
      --ink: #161616;
      --graphite: #6e6e6a;
      --line: #d8d8d3;
      --accent: #d92525;
      /* The same red as --accent, as bare channels. rgba() cannot take a
         hex, so any translucent use of the accent reads this instead of
         restating the colour. */
      --accent-rgb: 217, 37, 37;

      --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
      --serif: "Iowan Old Style", "Apple Garamond", Baskerville, "Times New Roman", "Droid Serif", Times, serif;
    }
