Typography

All you need for typography elements

Build Custom Web UIs

Title for Headings

Highly customizable components for building modern websites and applications that look and feel the way you want.

Title 2 for Headings

Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

  • Modern
  • Customizable
  • Responsive
  • Accessible

Title 3 for Headings

Tailus is really extraordinary and very practical, no need to break your head. A real gold mine.
Méschac Irung

Méschac Irung

Créator of Tailus UI

Title 4 for Headings

Title 5 for Headings
Title 6 for Headings
CodeKbd
<div class="space-y-6">
    <h1 class="text-4xl text-display font-bold lg:text-5xl">Build Custom Web UIs</h1>
    <h1 class="text-3xl font-semibold text-title">Title for Headings</h1>

    <p class="text-body">
        Highly <a href="https://tailus.io" class="link variant-underlined intent-primary" target="_blank" rel="noopener noreferrer">customizable components</a> for building <strong class="text-title">modern</strong> websites and <em class="text-title">applications</em> that look and feel the way you want.
    </p>

    <h2 class="text-2xl font-semibold text-title">Title 2 for Headings</h2>
    <p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
    
    <ul class="list-inside list-disc space-y-2">
        <li>Modern</li>
        <li>Customizable</li>
        <li>Responsive</li>
        <li>Accessible</li>
    </ul>

    <h3 class="text-xl font-semibold text-title">Title 3 for Headings</h3>
    <blockquote class="text-blockquote">Tailus is really extraordinary and very practical, no need to break your head. A real gold mine.</blockquote>
    
    <div class="grid gap-3 items-center [grid-template-columns:auto_1fr]">
        <div class="avatar sz-lg">
            <img src={MESCHAC_AVATAR} alt="Méschac Irung" />
        </div>
        <div>
            <p class="text-title">Méschac Irung</p>
            <span class="block text-caption text-sm">Créator of Tailus UI</span>
        </div>
    </div>

    <h4 class="text-lg font-medium text-title">Title 4 for Headings</h4>
    <h5 class="text-base font-medium text-title">Title 5 for Headings</h5>
    <h6 class="text-base font-medium text-title">Title 6 for Headings</h6>

    <div className="flex items-end gap-3">
        <code className="code intent-primary">Code</code>
        <kbd className="kbd">Kbd</kbd>
    </div>
</div>

Display

A title designed for prominent display at large sizes, specifically for use in the hero section of a webpage.

Build Custom Web UIsBuild Custom Web UIs
<div class="space-y-6">
    <h1 class="text-4xl text-display font-bold lg:text-5xl">Build Custom Web UIs</h1>
    <h1 class="text-4xl text-display font-bold lg:text-5xl">Build <span class="text-transparent bg-clip-text bg-gradient-to-r from-primary-600 to-accent-400">Custom</span> Web UIs</h1>
</div>

Title

Titles (Headings) create a layered system, highlighting key points within the content.

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6
<div class="space-y-6">
    <h1 class="text-3xl font-semibold text-title">Heading 1</h1>
    <h2 class="text-2xl font-semibold text-title">Heading 2</h2>
    <h3 class="text-xl font-semibold text-title">Heading 3</h3>
    <h4 class="text-lg font-medium text-title">Heading 4</h4>
    <h5 class="text-base font-medium text-title">Heading 5</h5>
    <h6 class="text-base font-medium text-title">Heading 6</h6>
</div>

Text

The body text elaborates on the structure outlined by titles, providing depth and explanation.

Tailus Themer is a Tailwind CSS Styling Library for Building Modern, Consistent and Accessible Web UIs.

<p class="text-body">
    Tailus Themer is a Tailwind CSS <strong class="text-title">Styling Library</strong> for Building Modern, Consistent and Accessible <em class="text-title">Web UIs</em>.
</p>

Blockquote

The body text elaborates on the structure outlined by titles, providing depth and explanation.

Tailus is really extraordinary and very practical, no need to break your head. A real gold mine.
<blockquote class="text-blockquote">Tailus is really extraordinary and very practical, no need to break your head. A real gold mine.</blockquote>

List

Bullet points and numbered lists organize content in a hierarchical fashion, highlighting key elements efficiently.

  • Modern
  • Customizable
  • Responsive
  • Accessible
  1. Modern
  2. Customizable
  3. Responsive
  4. Accessible
<div class="space-y-6 max-w-xs">
    <ul class="list-inside list-disc space-y-2">
        <li>Modern</li>
        <li>Customizable</li>
        <li>Responsive</li>
        <li>Accessible</li>
    </ul>

    <ol class="list-inside list-decimal space-y-2">
        <li>Modern</li>
        <li>Customizable</li>
        <li>Responsive</li>
        <li>Accessible</li>
    </ol>
</div>

Hyperlinks create a web of information, allowing readers to explore related topics in more detail.

<div class="space-y-3 *:block">
    <a class="link intent-primary" href="#">Tailus UI React</a>
    <a class="link variant-ghost intent-primary" href="#">Tailus UI React</a>
    <a class="link variant-animated intent-primary" href="#">Tailus UI React</a>
</div>

Component prop classes of the link element

Prop
Type
Usage
intent
enum
intent-[intent]
variant
enum
variant-[variant]

Caption

Captions provide details about images and figures, supplementing the main content and highlighting key visual elements.

Creator of Tailus UI
<span class="text-caption">Creator of Tailus UI</span>

Code

Code formatted inline highlights specific programming language elements within the surrounding text.

primarysecondaryaccentgrayneutral
<div class="space-y-3 *:w-fit *:block">
    <code class="code intent-primary">primary</code>
    <code class="code intent-secondary">secondary</code>
    <code class="code intent-accent">accent</code>
    <code class="code intent-gray">gray</code>
    <code class="code intent-neutral">neutral</code>
</div>

Kbd

Useful for showcasing keyboard shortcuts or other keyboard-based commands.

⌘ K
<kbd class="kbd">⌘ K</kbd>