File size: 354 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { defineTokens } from "../def"

export const easings = defineTokens.easings({
  "ease-in": {
    value: "cubic-bezier(0.42, 0, 1, 1)",
  },
  "ease-out": {
    value: "cubic-bezier(0, 0, 0.58, 1)",
  },
  "ease-in-out": {
    value: "cubic-bezier(0.42, 0, 0.58, 1)",
  },
  "ease-in-smooth": {
    value: "cubic-bezier(0.32, 0.72, 0, 1)",
  },
})