Svelte Typography - Flowbite

Use the typography and the utility classes from Tailwind CSS to style text with Flowbite

The typography for FlowBite is completely based on the utility classes from Tailwind CSS.

We have listed some of the commonly used typography classes that we use throughout the FlowBite UI, however, you can also check out all of the utility classes on the Tailwind CSS documentation directly.

Font Size #

Use the following text-size utility classes from Tailwind to set the font size for any text element.

Flowbite

FlowBite

FlowBite

FlowBite

FlowBite

FlowBite

FlowBite

FlowBite

FlowBite

FlowBite

FlowBite

FlowBite

FlowBite

  • Svelte
<p class="text-xs dark:text-white">Flowbite</p>

<p class="text-sm dark:text-white">FlowBite</p>

<p class="text-base dark:text-white">FlowBite</p>

<p class="text-lg dark:text-white">FlowBite</p>

<p class="text-xl dark:text-white">FlowBite</p>

<p class="text-2xl dark:text-white">FlowBite</p>

<p class="text-3xl dark:text-white">FlowBite</p>

<p class="text-4xl dark:text-white">FlowBite</p>

<p class="text-5xl dark:text-white">FlowBite</p>

<p class="text-6xl dark:text-white">FlowBite</p>

<p class="text-7xl dark:text-white">FlowBite</p>

<p class="text-8xl dark:text-white">FlowBite</p>

<p class="text-9xl dark:text-white">FlowBite</p>

Font Weight #

Use the following font-weight utility classes to set the font weight for any text element.

FlowBite

FlowBite

FlowBite

FlowBite

FlowBite

FlowBite

FlowBite

FlowBite

FlowBite

  • Svelte
<p class="font-thin dark:text-white">FlowBite</p>

<p class="font-extralight dark:text-white">FlowBite</p>

<p class="font-light dark:text-white">FlowBite</p>

<p class="font-normal dark:text-white">FlowBite</p>

<p class="font-medium dark:text-white">FlowBite</p>

<p class="font-semibold dark:text-white">FlowBite</p>

<p class="font-bold dark:text-white">FlowBite</p>

<p class="font-extrabold dark:text-white">FlowBite</p>

<p class="font-black dark:text-white">FlowBite</p>

Line Height #

Use the following leading-type utility classes to set the line height for any text element.

Themesberg was created to bring quality ...

Themesberg was created to bring quality ...

Themesberg was created to bring quality ...

Themesberg was created to bring quality ...

Themesberg was created to bring quality ...

Themesberg was created to bring quality ...

  • Svelte
<p class="leading-none dark:text-gray-400">Themesberg was created to bring quality ...</p>

<p class="leading-tight dark:text-gray-400">Themesberg was created to bring quality ...</p>

<p class="leading-snug dark:text-gray-400">Themesberg was created to bring quality ...</p>

<p class="leading-normal dark:text-gray-400">Themesberg was created to bring quality ...</p>

<p class="leading-relaxed dark:text-gray-400">Themesberg was created to bring quality ...</p>

<p class="leading-loose dark:text-gray-400">Themesberg was created to bring quality ...</p>

Lists #

Use the following code to create list items with ordered and unordered lists.

List disc
  • Design
  • Develop
  • Test
List decimal
  • Design
  • Develop
  • Test
List none
  • Design
  • Develop
  • Test
  • Svelte
<script>
  import { List, Li, Heading } from 'flowbite-svelte';
</script>

<Heading tag="h5">List disc</Heading>
<List list="disc">
  <Li>Design</Li>
  <Li>Develop</Li>
  <Li>Test</Li>
</List>
<Heading tag="h5">List decimal</Heading>
<List list="decimal">
  <Li>Design</Li>
  <Li>Develop</Li>
  <Li>Test</Li>
</List>
<Heading tag="h5">List none</Heading>
<List list="none">
  <Li>Design</Li>
  <Li>Develop</Li>
  <Li>Test</Li>
</List>

List position #

Use the list-inside and list-outside classes to set the list item position inside a list component.

List inside
  • Design
  • Develop
  • Test
List outside
  • Design
  • Develop
  • Test
  • Svelte
<script>
  import { List, Li, Heading } from 'flowbite-svelte';
</script>

<Heading tag="h5">List inside</Heading>
<List position="inside">
  <Li>Design</Li>
  <Li>Develop</Li>
  <Li>Test</Li>
</List>
<Heading tag="h5">List outside</Heading>
<List position="outside">
  <Li>Design</Li>
  <Li>Develop</Li>
  <Li>Test</Li>
</List>

Text Decoration #

You can use the following classes to set the text decoration for any inline text element.

please read our terms and services

please read our terms and services

  • Svelte
<p class="underline dark:text-gray-400">please read our terms and services</p>

<p class="line-through dark:text-gray-400">please read our terms and services</p>

Component data #

References #