Typography
Font size and weight tokens used across the application. Click to copy code.
Font Size Tokens
The quick brown fox jumps over the lazy dog
<p class="text-caption">Your text here</p>
The quick brown fox jumps over the lazy dog
<p class="text-body">Your text here</p>
The quick brown fox jumps over the lazy dog
<p class="text-subtitle">Your text here</p>
The quick brown fox jumps over the lazy dog
<p class="text-title">Your text here</p>
The quick brown fox jumps over the lazy dog
<p class="text-h3">Your text here</p>
The quick brown fox jumps over the lazy dog
<p class="text-h2">Your text here</p>
The quick brown fox jumps over the lazy dog
<p class="text-h1">Your text here</p>
Font Weight Tokens
The quick brown fox jumps over the lazy dog
<p class="font-regular">Your text here</p>
font-weight: 400;
The quick brown fox jumps over the lazy dog
<p class="font-medium">Your text here</p>
font-weight: 500;
Size Comparison
Weight Comparison
Usage Examples
Heading 1
Heading 2
Heading 3
<h1 class="text-h1 text-text-neutral font-medium"> Heading 1 </h1> <h2 class="text-h2 text-text-neutral font-regular"> Heading 2 </h2> <h3 class="text-h3 text-text-neutral font-medium"> Heading 3 </h3>
Subtitle Text
This is body text. Lorem ipsum dolor sit amet consectetur adipisicing elit.
Caption or helper text goes here
<p class="text-subtitle text-text-neutral font-medium"> Subtitle Text </p> <p class="text-body text-text-neutral"> This is body text. Lorem ipsum... </p> <p class="text-caption text-text-subtle"> Caption or helper text goes here </p>
Card Title
Subtitle or category
This is the main content of the card using body text size.
Last updated 2 hours ago
<div class="bg-bg-surface border border-border-subtle
rounded-lg p-6">
<h3 class="text-title text-text-neutral
font-medium">
Card Title
</h3>
<p class="text-body text-text-neutral
font-medium">
Subtitle or category
</p>
<p class="text-body text-text-neutral">
This is the main content of the card.
</p>
<p class="text-caption text-text-subtle">
Last updated 2 hours ago
</p>
</div>