designSetting.ts 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. import { ThemeEnum } from '../enums/appEnum';
  2. export const antPrefixCls = 'zxm';
  3. export const prefixCls = 'jeecg';
  4. export const darkMode = ThemeEnum.VENT1; //默认皮肤
  5. // app theme preset color
  6. export const APP_PRESET_COLOR_LIST: string[] = ['#0960bd', '#1890ff', '#009688', '#536dfe', '#ff5c93', '#ee4f12', '#0096c7', '#9c27b0', '#ff9800'];
  7. // header preset color
  8. export const HEADER_PRESET_BG_COLOR_LIST: string[] = [
  9. '#ffffff',
  10. '#151515',
  11. '#009688',
  12. '#5172DC',
  13. '#018ffb',
  14. '#409eff',
  15. '#e74c3c',
  16. '#24292e',
  17. '#394664',
  18. '#001529',
  19. '#383f45',
  20. ];
  21. // sider preset color
  22. export const SIDE_BAR_BG_COLOR_LIST: string[] = [
  23. '#001529',
  24. '#212121',
  25. '#273352',
  26. '#ffffff',
  27. '#191b24',
  28. '#191a23',
  29. '#304156',
  30. '#001628',
  31. '#28333E',
  32. '#344058',
  33. '#383f45',
  34. ];
  35. // sider logo line preset color [logo½¥±äÉ«]
  36. export const SIDER_LOGO_BG_COLOR_LIST: string[] = [
  37. 'linear-gradient(180deg, #000000, #021d37)',
  38. 'linear-gradient(180deg, #000000, #282828)',
  39. 'linear-gradient(180deg, #1c253e, #2b385c)',
  40. 'linear-gradient(180deg, #ffffff, #faf8f8)',
  41. 'linear-gradient(180deg, #000000, #242735)',
  42. 'linear-gradient(180deg, #000000, #1d1f2a)',
  43. 'linear-gradient(180deg, #304156, #32455d)',
  44. 'linear-gradient(180deg, #000000, #001f39)',
  45. 'linear-gradient(180deg, #000000, #2b3743)',
  46. 'linear-gradient(180deg, #344058, #374560)',
  47. 'linear-gradient(180deg, #383f45, #3b434b)',
  48. ];