/** * 获取主题色 * @returns string 颜色 */ export function getThemeColor() { const type = localStorage.getItem('themes') || 'default' console.log(type, '<=========== 看看') const colorType = { 'default': '#409EFF', 'dark': '#075985', } return colorType[type] }