designSetting.ts 769 B

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