fix(projects): 修复主题配置

This commit is contained in:
Soybean
2021-08-27 12:00:09 +08:00
parent eda87f041d
commit ff24fda5ee
10 changed files with 78 additions and 10 deletions

View File

@ -1,6 +1,7 @@
import type { ThemeSettings } from '@/interface';
const themeColorList = [
'#409EFF',
'#2d8cf0',
'#0960bd',
'#0084f4',
@ -27,7 +28,14 @@ const themeSettings: ThemeSettings = {
/** 系统主题色 */
themeColor: themeColorList[0],
/** 系统内置主题色列表 */
themeColorList
themeColorList,
/** 其他颜色 */
otherColor: {
info: '#2080f0',
success: '#67C23A',
warning: '#E6A23C',
error: '#F56C6C'
}
};
export default themeSettings;