You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
963 B

3 months ago
  1. // +----------------------------------------------------------------------
  2. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  3. // +----------------------------------------------------------------------
  4. // | Copyright (c) 2016~2025 https://www.crmeb.com All rights reserved.
  5. // +----------------------------------------------------------------------
  6. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  7. // +----------------------------------------------------------------------
  8. // | Author: CRMEB Team <admin@crmeb.com>
  9. // +----------------------------------------------------------------------
  10. let app = getApp();
  11. export function setThemeColor(){
  12. switch (app.globalData.theme) {
  13. case 'theme1':
  14. return '#e93323';
  15. break;
  16. case 'theme2':
  17. return '#FE5C2D';
  18. break;
  19. case 'theme3':
  20. return '#42CA4D';
  21. break;
  22. case 'theme4':
  23. return '#1DB0FC';
  24. break;
  25. case 'theme5':
  26. return '#FF448F';
  27. break;
  28. }
  29. }