Jon Plummer

Today I Learned

/type

Uses the same index-shaped markup as the live home page. Colors and type scale come from jonplummer.css (your OS light/dark choice). Stacks: Modern Font Stacks.

Example CSS
/* Tokens + hooks — order is for copying, not matching this site’s CSS file layout. */
/* code/pre: UA styles use monospace; --font-family-mono sets it explicitly (not the body stack). */

:root {
  --font-family: system-ui, sans-serif;
  --font-family-mono: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
}

body {
  font-family: var(--font-family);
}

code, pre, kbd, samp {
  font-family: var(--font-family-mono);
}