9 lines
178 B
TypeScript
9 lines
178 B
TypeScript
![]() |
export interface ThemeSettings {
|
||
|
/** 深色模式 */
|
||
|
darkMode: boolean;
|
||
|
/** 主题颜色 */
|
||
|
themeColor: string;
|
||
|
/** 主题颜色列表 */
|
||
|
themeColorList: string[];
|
||
|
}
|