| 123456789101112131415161718192021222324252627 |
- // 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;
- //# sourceMappingURL=theme.uts.map
|