Easings

List of tokens used for easings.

Usage

<Box animationName="spin" animationTimingFunction="ease-in-out" />
<Box transitionProperty="all" transitionTimingFunction="ease-in-out" />

Tokens

ease

ease-in

ease-in-out

ease-in-smooth

ease-out

TokenValue
ease"cubic-bezier(0.25, 0, 0.25, 1)"
ease-in"cubic-bezier(0.42, 0, 1, 1)"
ease-in-out"cubic-bezier(0.42, 0, 0.58, 1)"
ease-in-smooth"cubic-bezier(0.32, 0.72, 0, 1)"
ease-out"cubic-bezier(0, 0, 0.58, 1)"