tooot/src/utils/styles/constants.ts

32 lines
386 B
TypeScript

const Base = 4
export const StyleConstants = {
Font: {
Size: {
S: 12,
M: 16,
L: 18
},
LineHeight: { M: 20 },
Weight: {
Bold: '600' as '600'
}
},
Spacing: {
XS: Base,
S: Base * 2,
M: Base * 4,
L: Base * 6,
XL: Base * 10,
Global: {
PagePadding: Base * 4
}
},
Avatar: {
S: 52,
L: 104
}
}