Mordoc

Article Page

Style the breadcrumb, blockquote, and inline code chip on an article page.

1 MIN READ

Article Page renders inside Content's article column (see Content Layout): the breadcrumb, title, description, and the body content rendered from your Markdown.

Most of the body text (headings, paragraphs, links, lists, tables) already looks right from the global tokens in Design Tokens (--color-fg, --color-content-fg, --color-border) and doesn't need its own tokens. Only the breadcrumb, blockquotes, and the inline code chip have article-specific tokens of their own.

Open the override file

Text
config/styles/article-page.css

Tokens

TokenWhat it controls
--breadcrumb-linkText color of a breadcrumb segment that links to a parent page.
--breadcrumb-link-hoverThat segment's color on hover.
--breadcrumb-currentText color of the current page's breadcrumb segment (not a link).
--breadcrumb-sepColor of the separator between breadcrumb segments.
--blockquote-radiusCorner radius of a Markdown > blockquote.
--inline-code-radiusCorner radius of inline `code` in body text.

Example article-page.css

A config/styles/article-page.css that sets every token on this page, for both light and dark mode:

Css
:root {
  --breadcrumb-link: #6b6b6b;
  --breadcrumb-link-hover: #1c1c1c;
  --breadcrumb-current: #111827;
  --breadcrumb-sep: #6b6b6b;
  --blockquote-radius: 6px;
  --inline-code-radius: 4px;
}

.dark {
  --breadcrumb-link: #a0a0a0;
  --breadcrumb-link-hover: #eaeaea;
  --breadcrumb-current: #f3f4f6;
}

Next step

© 2026 MordocPowered by Mordoc