xref: /MusicFree/src/constants/uiConst.ts (revision bf6e62f27bf21a011995d7561e0093fae1a2d72e)
1import rpx from '@/utils/rpx';
2
3const fontSizeConst = {
4  /** 16 */
5  smallest: rpx(16),
6  /** 20 */
7  smaller: rpx(20),
8  /** 24 */
9  small: rpx(24),
10  /** 28 */
11  normal: rpx(28),
12  /** 32 */
13  big: rpx(32),
14  /** 36 */
15  bigger: rpx(36),
16  /** 40 */
17  biggest: rpx(40),
18};
19
20const fontWeightConst: Record<
21  'regular' | 'bold' | 'bolder',
22  '400' | '600' | '800'
23> = {
24  regular: '400',
25  bold: '600',
26  bolder: '800',
27};
28
29export {fontSizeConst, fontWeightConst};
30