commonMethod.js 290 B

12345678910111213
  1. /**
  2. * 获取主题色
  3. * @returns string 颜色
  4. */
  5. export function getThemeColor() {
  6. const type = localStorage.getItem('themes') || 'default'
  7. console.log(type, '<=========== 看看')
  8. const colorType = {
  9. 'default': '#409EFF',
  10. 'dark': '#075985',
  11. }
  12. return colorType[type]
  13. }