Tailwind CSS Typography - Props

The following props are available for typography component. These are the custom props that come with we've added for the typography component and you can use all the other native props as well.

Attribute Type Description Default
variantVariant Change typography variant paragraph
colorColor Change typography color inherit
text-gradientboolean Change typography color into a gradient color false
aselement Change the typography rendered element undefined

Types - Variant

type variant = 
  | "h1"
  | "h2"
  | "h3"
  | "h4"
  | "h5"
  | "h6"
  | "lead"
  | "paragraph"
  | "small"
      

Types - Color

type color = 
  | "inherit"
  | "current"
  | "black"
  | "white"
  | "blue-gray"
  | "gray"
  | "brown"
  | "deep-orange"
  | "orange"
  | "amber"
  | "yellow"
  | "lime"
  | "light-blue"
  | "blue"
  | "teal"
  | "cyan"
  | "light-blue"
  | "blue"
  | "indigo"
  | "deep-purple"
  | "purple"
  | "pink"
  | "red"