designSetting.ts 803 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import { ThemeEnum } from '../enums/appEnum'
  2. export const prefixCls = 'xingyuv'
  3. export const multipleTabHeight = 30
  4. export const darkMode = ThemeEnum.LIGHT
  5. // app主题色预设
  6. export const APP_PRESET_COLOR_LIST: string[] = [
  7. '#0960bd',
  8. '#0084f4',
  9. '#009688',
  10. '#536dfe',
  11. '#ff5c93',
  12. '#ee4f12',
  13. '#0096c7',
  14. '#9c27b0',
  15. '#ff9800',
  16. ]
  17. // 顶部背景色预设
  18. export const HEADER_PRESET_BG_COLOR_LIST: string[] = [
  19. '#ffffff',
  20. '#151515',
  21. '#009688',
  22. '#5172DC',
  23. '#018ffb',
  24. '#409eff',
  25. '#e74c3c',
  26. '#24292e',
  27. '#394664',
  28. '#001529',
  29. '#383f45',
  30. ]
  31. // 左侧菜单背景色预设
  32. export const SIDE_BAR_BG_COLOR_LIST: string[] = [
  33. '#001529',
  34. '#212121',
  35. '#273352',
  36. '#ffffff',
  37. '#191b24',
  38. '#191a23',
  39. '#304156',
  40. '#001628',
  41. '#28333E',
  42. '#344058',
  43. '#383f45',
  44. ]