1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| export const FONT_SIZE_THEME = {
| /** @description 一级字体,text-4xl */
| size1: {
| fontSize: '2.25rem',
| lineHeight: '2.5rem',
| },
| /** @description 二级字体,text-3xl */
|
| size2: {
| fontSize: '1.875rem',
| lineHeight: '2.25rem',
| },
| /** @description 三级字体,text-2xl */
| size3: {
| fontSize: '1.5rem',
| lineHeight: '2rem',
| },
| /** @description 四级字体,text-xl */
| size4: {
| fontSize: '1.25rem',
| lineHeight: '1.75rem',
| },
| } as const;
| export type FontSizeTheme = typeof FONT_SIZE_THEME;
|
| /** @description 单位为 rem */
| export const BASE_HEIGHT = 4;
|
|