theme.ts 474 B

12345678910111213141516171819202122232425262728
  1. // common/theme.ts
  2. export const colors = {
  3. primary: '#FFD740', // 主黄色
  4. primaryLight: '#FFF8E1', // 浅黄背景
  5. textMain: '#333333',
  6. textSub: '#999999',
  7. success: '#52C41A',
  8. warning: '#FAAD14',
  9. error: '#F5222D',
  10. bgPage: '#F5F5F5',
  11. white: '#FFFFFF',
  12. border: '#EEEEEE'
  13. } as const;
  14. export const spacing = {
  15. xs: 4,
  16. sm: 8,
  17. md: 16,
  18. lg: 24,
  19. xl: 32
  20. } as const;
  21. export const borderRadius = {
  22. sm: 4,
  23. md: 8,
  24. lg: 12,
  25. xl: 16
  26. } as const;