feat: 新增浅色模式下的侧边栏配色切换:深蓝色、白色

This commit is contained in:
lostelk
2025-02-19 12:45:29 +08:00
parent 5656760940
commit d6de05a4b7
13 changed files with 169 additions and 17 deletions

View File

@@ -16,3 +16,17 @@ export const enum ThemeEnum {
*/
AUTO = "auto",
}
/**
* 浅色主题下的侧边栏配色方案枚举
*/
export const enum SidebarLightThemeEnum {
/**
* 深蓝色
*/
DARKBLUE = "light-darkBlue",
/**
* 白色
*/
WHITE = "light-white",
}