Font Size

text-xs
text-sm
text-base
text-lg
text-xl
text-2xl
text-4xl
text-6xl

Example:

<h1 class="text-5xl">
Heading
</h1>


Font Weight

font-thin
font-light
font-normal
font-medium
font-semibold
font-bold
font-black

Example:

<p class="font-bold">
Bold Text
</p>


Text Alignment

text-left
text-center
text-right

Example:

<h1 class="text-center">
Centered
</h1>