designSetting.ts 995 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. import { ThemeEnum } from '../enums/appEnum';
  2. export const prefixCls = 'vMonitor';
  3. export const multipleTabHeight = 30;
  4. export const darkMode = ThemeEnum.DARK;
  5. // 页脚固定高度
  6. export const footerHeight = 75;
  7. // .@{namespace}-layout-multiple-header__placeholder
  8. // 全屏页头动画时长
  9. export const layoutMultipleHeadePlaceholderTime = 0.6;
  10. // app theme preset color
  11. export const APP_PRESET_COLOR_LIST: string[] = [
  12. '#0960bd',
  13. '#0084f4',
  14. '#009688',
  15. '#536dfe',
  16. '#ff5c93',
  17. '#ee4f12',
  18. '#0096c7',
  19. '#9c27b0',
  20. '#ff9800',
  21. ];
  22. // header preset color
  23. export const HEADER_PRESET_BG_COLOR_LIST: string[] = [
  24. '#ffffff',
  25. '#151515',
  26. '#009688',
  27. '#5172DC',
  28. '#018ffb',
  29. '#409eff',
  30. '#e74c3c',
  31. '#24292e',
  32. '#394664',
  33. '#001529',
  34. '#383f45',
  35. ];
  36. // sider preset color
  37. export const SIDE_BAR_BG_COLOR_LIST: string[] = [
  38. '#001529',
  39. '#212121',
  40. '#273352',
  41. '#ffffff',
  42. '#191b24',
  43. '#191a23',
  44. '#304156',
  45. '#001628',
  46. '#28333E',
  47. '#344058',
  48. '#383f45',
  49. ];