colorSetting.ts 391 B

12345678910111213141516171819202122232425
  1. // header preset color
  2. export const HEADER_PRESET_BG_COLOR_LIST: string[] = [
  3. '#ffffff',
  4. '#009688',
  5. '#18bc9c',
  6. '#1E9FFF',
  7. '#018ffb',
  8. '#409eff',
  9. '#4e73df',
  10. '#e74c3c',
  11. '#24292e',
  12. '#394664',
  13. '#001529',
  14. ];
  15. // sider preset color
  16. export const SIDE_BAR_BG_COLOR_LIST: string[] = [
  17. '#273352',
  18. '#ffffff',
  19. '#191a23',
  20. '#001529',
  21. '#304156',
  22. '#28333E',
  23. '#344058',
  24. ];