/* ------------------------------------------------------------------
   Design tokens — universities-chapter.co.uk

   One place for the colours, type and widths. Change a value here and
   it changes everywhere it is used. Nothing in this file draws anything;
   layout lives in styles.css.
   ------------------------------------------------------------------ */

:root {
  /* ---- Ground ----
     A wide, shallow radial anchored just above the top centre, so the
     page reads as lit behind the emblem rather than flatly printed.
     --ground is the flat fallback and the colour browsers tint their
     UI with (see theme-color in index.html); keep the two in step. */
  --ground: #68246d;
  --wash: radial-gradient(130% 80% at 50% -8%, #732879 0%, #6b2570 40%, #5b2060 74%);

  /* ---- Ink ----
     Everything on this site is the same white. Emphasis comes from
     size and space, not from weight or colour. */
  --ink: #ffffff;

  /* ---- Type ---- */
  --serif: Georgia, "Times New Roman", Times, serif;

  /* ---- Measures ----
     Three widths: the page, the bordered entry block, and the narrower
     measure used for running prose so centred text does not straggle. */
  --measure-page: 54rem;
  --measure-entry: 44rem;
  --measure-note: 34rem;
}
