feat(projects): 新增主题配置

This commit is contained in:
Soybean
2021-08-18 12:02:59 +08:00
parent 09a28d8e1d
commit ed67b797c2
30 changed files with 528 additions and 47 deletions

8
src/interface/app.ts Normal file
View File

@ -0,0 +1,8 @@
export interface ThemeSettings {
/** 深色模式 */
darkMode: boolean;
/** 主题颜色 */
themeColor: string;
/** 主题颜色列表 */
themeColorList: string[];
}

0
src/interface/common.ts Normal file
View File

View File

@ -1 +1,2 @@
export { UserInfo } from './business';
export { ThemeSettings } from './app';