mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-20 02:26:39 +08:00
9 lines
178 B
TypeScript
9 lines
178 B
TypeScript
export interface ThemeSettings {
|
|
/** 深色模式 */
|
|
darkMode: boolean;
|
|
/** 主题颜色 */
|
|
themeColor: string;
|
|
/** 主题颜色列表 */
|
|
themeColorList: string[];
|
|
}
|