| 12345678910111213141516171819202122232425262728 |
- // common/theme.ts
- export const colors = {
- primary: '#FFD740', // 主黄色
- primaryLight: '#FFF8E1', // 浅黄背景
- textMain: '#333333',
- textSub: '#999999',
- success: '#52C41A',
- warning: '#FAAD14',
- error: '#F5222D',
- bgPage: '#F5F5F5',
- white: '#FFFFFF',
- border: '#EEEEEE'
- } as const;
- export const spacing = {
- xs: 4,
- sm: 8,
- md: 16,
- lg: 24,
- xl: 32
- } as const;
- export const borderRadius = {
- sm: 4,
- md: 8,
- lg: 12,
- xl: 16
- } as const;
|