1
0

designSetting.ts 762 B

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