designSetting.ts 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. import { ThemeEnum } from '../enums/appEnum';
  2. export const prefixCls = 'jeecg';
  3. export const darkMode = ThemeEnum.LIGHT;
  4. // app theme preset color
  5. export const APP_PRESET_COLOR_LIST: string[] = [
  6. '#0960bd',
  7. '#1890ff',
  8. '#009688',
  9. '#536dfe',
  10. '#ff5c93',
  11. '#13c2c2',
  12. '#52c41a',
  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. '#13c2c2',
  26. '#e74c3c',
  27. '#52c41a',
  28. '#394664',
  29. '#faad14',
  30. '#383f45',
  31. ];
  32. // sider preset color
  33. export const SIDE_BAR_BG_COLOR_LIST: string[] = [
  34. '#001529',
  35. // '#212121',
  36. '#009688',
  37. '#273352',
  38. '#ffffff',
  39. '#191b24',
  40. // '#191a23',
  41. '#037bd5',
  42. '#304156',
  43. '#001628',
  44. '#28333E',
  45. // '#344058',
  46. '#e74c3c',
  47. '#383f45',
  48. ];
  49. // sider logo line preset color [logo����ɫ]
  50. export const SIDER_LOGO_BG_COLOR_LIST: string[] = [
  51. 'linear-gradient(180deg, #000000, #021d37)',
  52. // 'linear-gradient(180deg, #000000, #282828)',
  53. 'linear-gradient(180deg, #078d80, #029184)',
  54. 'linear-gradient(180deg, #1c253e, #2b385c)',
  55. 'linear-gradient(180deg, #ffffff, #ffffff)',
  56. 'linear-gradient(180deg, #000000, #242735)',
  57. // 'linear-gradient(180deg, #000000, #1d1f2a)',
  58. 'linear-gradient(180deg, #1d77bb, #188efa)',
  59. 'linear-gradient(180deg, #304156, #32455d)',
  60. 'linear-gradient(180deg, #000000, #001f39)',
  61. 'linear-gradient(180deg, #000000, #2b3743)',
  62. // 'linear-gradient(180deg, #344058, #374560)',
  63. 'linear-gradient(180deg, #e83723, #e52611)',
  64. 'linear-gradient(180deg, #383f45, #3b434b)',
  65. ];