File size: 332 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { defineTokens } from "../def"

export const aspectRatios = defineTokens.aspectRatios({
  square: {
    value: "1 / 1",
  },
  landscape: {
    value: "4 / 3",
  },
  portrait: {
    value: "3 / 4",
  },
  wide: {
    value: "16 / 9",
  },
  ultrawide: {
    value: "18 / 5",
  },
  golden: {
    value: "1.618 / 1",
  },
})