Heading
Heading

Headings are an essential part of structuring and organizing content in your application. They provide hierarchy and help users navigate and understand the information presented. This section covers how to use headings effectively in your project.

Example code / preview

h1. Heading 1

h2. Heading 2

h3. Heading 3

h4. Heading 4

h5. Heading 5
h6. Heading 6

h1. Heading 1

h2. Heading 2

h3. Heading 3

h4. Heading 4

h5. Heading 5
h6. Heading 6
            <div>
    <h1 class="text-4xl font-medium leading-none">h1. Heading 1</h1>
    <h2 class="mt-3 text-3xl font-medium leading-none">
        h2. Heading 2
    </h2>
    <h3 class="mt-3 text-2xl font-medium leading-none">
        h3. Heading 3
    </h3>
    <h4 class="mt-3 text-xl font-medium leading-none">
        h4. Heading 4
    </h4>
    <h5 class="mt-3 text-lg font-medium leading-none">
        h5. Heading 5
    </h5>
    <h6 class="mt-3 font-medium leading-none">h6. Heading 6</h6>
</div>
<div class="mt-5">
    <h1 class="text-4xl font-medium leading-none text-primary">
        h1. Heading 1
    </h1>
    <h2 class="mt-3 text-3xl font-medium leading-none text-slate-600 dark:text-slate-500">
        h2. Heading 2
    </h2>
    <h3 class="mt-3 text-2xl font-medium leading-none text-success">
        h3. Heading 3
    </h3>
    <h4 class="mt-3 text-xl font-medium leading-none text-warning">
        h4. Heading 4
    </h4>
    <h5 class="mt-3 text-lg font-medium leading-none text-danger">
        h5. Heading 5
    </h5>
    <h6 class="mt-3 font-medium leading-none text-slate-500">
        h6. Heading 6
    </h6>
</div>
        

Headings play a crucial role in structuring and organizing your content. By using headings effectively and consistently, you can improve the accessibility and readability of your application. Remember to choose the appropriate heading level, keep headings semantic, and follow accessibility best practices for a better user experience.

Text Settings

Text settings and styles are essential for ensuring that your content is both visually appealing and easy to read. This section covers how to apply various text settings to your content.

Example code / preview
Example text
Example medium text
Example semibold text
Example bolder text
Example boldest text
Example uppercase text
Example lowercase text
Example capitalized text
Example cursive text
            <div>
    <div class="font-normal">Example text</div>
    <div class="font-medium">Example medium text</div>
    <div class="font-semibold">Example semibold text</div>
    <div class="font-bold">Example bolder text</div>
    <div class="font-extrabold">Example boldest text</div>
</div>
<div class="mt-5">
    <div class="uppercase">Example uppercase text</div>
    <div class="lowercase">Example lowercase text</div>
    <div class="capitalize">Example capitalized text</div>
    <div class="normal-case">Example cursive text</div>
</div>
        

Customizing text settings is crucial for creating visually appealing and readable content. By adjusting font size, line height, color, font family, text alignment, and text decoration, you can tailor your text to suit your application's design and improve the user experience. Remember to maintain consistency in your text settings throughout your application for a polished look.

Common Elements

Common HTML elements are often used to style or convey special meanings within your content. This section covers some common HTML elements that can be used to enhance the presentation of your text-based content.

Example code / preview
You can use the mark tag to highlight text.
This line of text is meant to be treated as deleted text. This line of text is meant to be treated as no longer accurate. This line of text is meant to be treated as an addition to the document. This line of text will render as underlined This line of text is meant to be treated as fine print. This line rendered as bold text. This line rendered as italicized text.
            <div>
    You can use the mark tag to
    <mark class="bg-yellow-200 p-1">highlight</mark> text.
</div>
<del class="mt-1 block">This line of text is meant to be treated as deleted
    text.</del>
<s class="mt-1 block">This line of text is meant to be treated as no longer
    accurate.</s>
<ins class="mt-1 block">This line of text is meant to be treated as an
    addition to the
    document.</ins>
<u class="mt-1 block">This line of text will render as underlined</u>
<small class="mt-1 block">This line of text is meant to be treated as fine
    print.</small>
<strong class="mt-1 block">This line rendered as bold text.</strong>
<em class="mt-1 block">This line rendered as italicized text.</em>
        

These common HTML elements provide you with a range of tools to enhance the styling and meaning of your text-based content. By using these elements appropriately, you can improve the readability and visual presentation of your content while conveying specific meanings or emphasis where needed.

Badges

Badges are small, informative components used to visually represent status, notifications, or other metadata in a concise manner. This section covers how to use badges effectively in your web applications.

Example code / preview
Basic Badge
1 2 3 4 5 6
Badge Sizes
1 2 3 4 5 6
1 2 3 4 5 6
1 2 3 4 5 6
Square Badge
1 2 3 4 5 6
Outline Badge
1 2 3 4 5
            <div class="font-medium">Basic Badge</div>
<div class="mt-2">
    <span class="mr-1 rounded-full bg-primary px-1 text-xs text-white">1</span>
    <span class="mr-1 rounded-full border px-1 text-xs text-slate-600 dark:border-darkmode-100/40 dark:text-slate-300">2</span>
    <span class="mr-1 rounded-full bg-success px-1 text-xs text-white">3</span>
    <span class="mr-1 rounded-full bg-warning px-1 text-xs text-white">4</span>
    <span class="mr-1 rounded-full bg-danger px-1 text-xs text-white">5</span>
    <span class="mr-1 rounded-full bg-slate-100 px-1 text-xs text-slate-500 dark:bg-darkmode-800 dark:text-slate-300">6</span>
</div>
<div class="mt-6 font-medium">Badge Sizes</div>
<div class="mt-3">
    <span class="mr-1 rounded-full bg-primary px-2 py-1 text-white">1</span>
    <span class="mr-1 rounded-full border px-2 py-1 text-slate-600 dark:border-darkmode-100/40 dark:text-slate-300">2</span>
    <span class="mr-1 rounded-full bg-success px-2 py-1 text-white">3</span>
    <span class="mr-1 rounded-full bg-warning px-2 py-1 text-white">4</span>
    <span class="mr-1 rounded-full bg-danger px-2 py-1 text-white">5</span>
    <span class="mr-1 rounded-full bg-slate-100 px-2 py-1 text-slate-500 dark:bg-darkmode-800 dark:text-slate-300">6</span>
</div>
<div class="mt-4">
    <span class="mr-1 rounded-full bg-primary px-3 py-2 text-white">1</span>
    <span class="mr-1 rounded-full border px-3 py-2 text-slate-600 dark:border-darkmode-100/40 dark:text-slate-300">2</span>
    <span class="mr-1 rounded-full bg-success px-3 py-2 text-white">3</span>
    <span class="mr-1 rounded-full bg-warning px-3 py-2 text-white">4</span>
    <span class="mr-1 rounded-full bg-danger px-3 py-2 text-white">5</span>
    <span class="mr-1 rounded-full bg-slate-100 px-3 py-2 text-slate-500 dark:bg-darkmode-800 dark:text-slate-300">6</span>
</div>
<div class="mt-6">
    <span class="mr-1 rounded-full bg-primary px-4 py-3 text-white">1</span>
    <span class="mr-1 rounded-full border px-4 py-3 text-slate-600 dark:border-darkmode-100/40 dark:text-slate-300">2</span>
    <span class="mr-1 rounded-full bg-success px-4 py-3 text-white">3</span>
    <span class="mr-1 rounded-full bg-warning px-4 py-3 text-white">4</span>
    <span class="mr-1 rounded-full bg-danger px-4 py-3 text-white">5</span>
    <span class="mr-1 rounded-full bg-slate-100 px-4 py-3 text-slate-500 dark:bg-darkmode-800 dark:text-slate-300">6</span>
</div>
<div class="mt-10 font-medium">Square Badge</div>
<div class="mt-2">
    <span class="mr-1 bg-primary px-1 text-xs text-white">1</span>
    <span class="mr-1 border px-1 text-xs text-slate-600 dark:border-darkmode-100/40 dark:text-slate-300">2</span>
    <span class="mr-1 bg-success px-1 text-xs text-white">3</span>
    <span class="mr-1 bg-warning px-1 text-xs text-white">4</span>
    <span class="mr-1 bg-danger px-1 text-xs text-white">5</span>
    <span class="mr-1 bg-slate-100 px-1 text-xs text-slate-500 dark:bg-darkmode-800 dark:text-slate-300">6</span>
</div>
<div class="mt-6 font-medium">Outline Badge</div>
<div class="mt-4">
    <span class="mr-1 rounded-full border border-primary px-3 py-2 text-primary dark:border-primary">1</span>
    <span class="mr-1 rounded-full border px-3 py-2 text-slate-600 dark:border-darkmode-100/40 dark:text-slate-300">2</span>
    <span class="mr-1 rounded-full border border-success px-3 py-2 text-success dark:border-success">3</span>
    <span class="mr-1 rounded-full border border-warning px-3 py-2 text-warning dark:border-warning">4</span>
    <span class="mr-1 rounded-full border border-danger px-3 py-2 text-danger dark:border-danger">5</span>
</div>
        

Badges are versatile components that can help you convey important information or highlight specific elements in your application. By using different variants, icons, counts, and custom styling, you can create badges that fit seamlessly into your design and improve user experience.

Separator

Separators are used to create visual divisions or spacing between elements in a user interface. They help improve the overall layout and readability of a page. This section covers various ways to use separators effectively in your web applications.

Example code / preview
            <div class="w-full border-t border-dashed border-slate-200/60 dark:border-darkmode-400">
</div>
<div class="mt-5 w-full border-t border-slate-200/60 dark:border-darkmode-400">
</div>
        

Separators play a crucial role in improving the layout and readability of your web pages. They can help create a clear visual hierarchy and enhance the overall user experience. By using different types of separators and custom styles, you can tailor them to match your application's design and effectively structure your content.

Divider

Dividers are used to create clear visual separations between sections or content on a webpage. They help improve the overall structure and organization of a page. This section covers various ways to use dividers effectively in your web applications.

Example code / preview
or
            <div class="mt-2 flex w-full justify-center border-t border-slate-200/60 dark:border-darkmode-400">
    <div class="-mt-3 bg-white px-5 text-slate-500 dark:bg-darkmode-600">
        or
    </div>
</div>
        

Dividers are essential for maintaining a well-structured layout in your web applications. They help create a clear visual hierarchy and enhance the overall user experience by providing a sense of organization and separation between content sections.

Links

Links are a fundamental part of web development and navigation. They allow users to navigate between different pages or resources on the internet. This section covers the usage of links in web development and provides examples of how to create and style links effectively.

Example code / preview
            <div>
    <a class="block font-normal text-primary" href="">Example text</a>
    <a class="block font-medium text-primary" href="">Example medium text</a>
    <a class="block font-semibold text-primary" href="">Example semibold text</a>
    <a class="block font-bold text-primary" href="">Example bolder text</a>
    <a class="block font-extrabold text-primary" href="">Example boldest text</a>
</div>
<div class="mt-5">
    <a class="block text-primary" href="">Primary state</a>
    <a class="block text-slate-600 dark:text-slate-500" href="">Secondary state</a>
    <a class="block text-success" href="">Success state</a>
    <a class="block text-warning" href="">Warning state</a>
    <a class="block text-danger" href="">Danger state</a>
</div>
        

Links are a crucial part of web development, allowing users to navigate between different pages and resources. Understanding how to create and style links effectively is essential for providing a smooth and user-friendly browsing experience. By using proper HTML syntax and CSS styling, you can make your links visually appealing and functional, enhancing the overall user experience on your website or web application.