← Claravine brand

Typography

Headings and body share one typeface: Noto Sans. Code uses Noto Sans Mono — plus a tuned.prose layer for written content. Every specimen below renders with its real utility classes.

Part 1 · Design typography

Headings & body · font-sans

Noto Sans

One typeface for everything — headings (h1–h6), UI labels, body copy, and prose. Variable weight, 100–900.

AaBbCc 0123 — æ ß ç

Code · font-mono

Noto Sans Mono

Code, tokens, and literal specimens.

AaBbCc 0123 — æ ß ç

Type scale

Hero

Post titles (PostLayout h1)

Claravine

text-4xl font-semibold xl:text-6xl

Lede

Post descriptions (PostLayout)

Ideas, art, and research, kept in the open.

text-2xl xl:text-3xl

Section heading

Landing sections & author bio (h2)

What you get

text-3xl font-medium md:text-4xl

Card title

PostCard (h3)

An example post

text-2xl font-semibold leading-normal xl:text-3xl

Body

Global body (BaseLayout)

The base reading size — Noto Sans, set clean.

text-lg xl:text-xl

Mono labels

Eyebrow / meta

Dates, eyebrows (PostCard, PostLayout)

20 Jun 2026

font-mono text-xs uppercase tracking-normal

Previous / Next

Post navigation (PostLayout)

Previous

font-mono text-sm uppercase tracking-normal

Button text

Copy / action buttons

Copy

font-mono text-xs font-medium uppercase tracking-normal

Tracking

  • tracking-tight

    Default — headings, body, nav & footer labels

    Global body, nav, footer

  • tracking-normal

    In-content mono labels — eyebrows, meta, buttons

    Dates, Previous/Next, copy button

Leading

  • leading-tight

    Body copy & headings

    Global body (BaseLayout)

  • leading-normal

    Multi-line titles

    PostCard, prev/next titles

Part 2 · Prose typography

.prose configuration

MDX content renders inside prose prose-xl (stepping up to2xl:prose-2xl). Overrides live intailwind.config.mjs via typography().

In-prose links

Link treatment is driven by data attributes added by the rehypeExternalLinks plugin. Each renders with its real token.

Base link

a

claravine-green-600 · underline offset-2

External

[data-external]

claravine-green-600 · underline offset-2

Resource

[data-resource]

claravine-green-600 · underline offset-2

Anchor

[data-anchor]

claravine-green-600 · underline offset-2

Live specimen

The shape of a sentence

Prose body and headings are both set in Noto Sans at prose-xl, with ink-colored bold. This is a base internal link, anexternal link, aresource link, and ananchor link.

Lists

  • Unordered items use the prose default marker.
  • Inline code picks up the mono face.
  1. Ordered items count up.
  2. Then carry on.

A blockquote sets quoted material apart with a left rule and italic body.

Definition list

Design token
A named value (like a color) defined once and reused everywhere.
Definition list
A term paired with its description, like this one.

Code block

Fenced blocks are highlighted with Shiki (catppuccin-latte) and get a copy button at build time. Hand-written here, they fall back to prose code styling:

const garden = ["posts", "resources", "now"];
garden.forEach((bed) => tend(bed));