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

22 lines
387 B
TypeScript
Raw Normal View History

2021-08-18 12:02:59 +08:00
export interface ThemeSettings {
/** 深色模式 */
darkMode: boolean;
/** 主题颜色 */
themeColor: string;
/** 主题颜色列表 */
themeColorList: string[];
2021-08-27 12:00:09 +08:00
/** 其他颜色 */
otherColor: OtherColor;
}
interface OtherColor {
/** 信息 */
info: string;
/** 成功 */
success: string;
/** 警告 */
warning: string;
/** 错误 */
error: string;
2021-08-18 12:02:59 +08:00
}