theme.uts 509 B

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