soybean-admin/src/interface/app.ts
2021-08-18 12:02:59 +08:00

9 lines
178 B
TypeScript

export interface ThemeSettings {
/** 深色模式 */
darkMode: boolean;
/** 主题颜色 */
themeColor: string;
/** 主题颜色列表 */
themeColorList: string[];
}