Transitions

transition-timing-function to Tailwind

The four standard easings map to ease-*; a custom cubic-bezier becomes an arbitrary value.

The 4 mappings below are read straight out of Tailwind v4.3.3, not maintained by hand, so this is what the converter will actually produce for transition-timing-function.

transition-timing-function values and their classes

CSSTailwind
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);ease-out
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);ease-in-out
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);ease-in
transition-timing-function: linear;ease-linear

Values that are not on the scale

Anything without a named class is written as an arbitrary value in square brackets. The converter falls back to this rather than rounding your CSS to the nearest class, because silently changing a value is worse than an ugly class name.

ease-[your value]

Other transitions properties

Converting a whole stylesheet?

Paste it into the converter and get every rule at once, shorthands expanded, media queries turned into breakpoint variants, and the parts that have no Tailwind equivalent flagged rather than dropped.

Open the converter