ruoyi-plus-soybean/src/interface/app.ts

9 lines
178 B
TypeScript
Raw Normal View History

2021-08-18 12:02:59 +08:00
export interface ThemeSettings {
/** 深色模式 */
darkMode: boolean;
/** 主题颜色 */
themeColor: string;
/** 主题颜色列表 */
themeColorList: string[];
}