Skip to content

Prose

Rich-text container for article/blog content. Styles headings, paragraphs, lists, code, and pre blocks.


Classes

ClassPurpose
.proseContainer for rich text content

Styled Elements

SelectorStyling
.prose h2font-size-2xl, semibold, tight line-height
.prose h3font-size-lg, semibold
.prose pRelaxed line-height, bottom margin
.prose ul, olLeft padding, relaxed line-height
.prose liSmall bottom margin
.prose codeMono font, surface-alt background, small padding
.prose preSurface background, rounded-lg, overflow-x auto
.prose pre codeReset padding and background

Preview

Heading Level 2

Paragraph with inline code and normal text content for demonstration.

Heading Level 3

  • First list item
  • Second list item

Usage

html
<div class="prose">
  <h2>Section Title</h2>
  <p>Paragraph with <code>inline code</code>.</p>
  <ul>
    <li>List item</li>
  </ul>
  <pre><code>code block</code></pre>
</div>