style(hub): refine light theme contrast and theme-aware fullscreen UI

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dekun
2026-06-04 12:08:35 +08:00
parent d1914df46f
commit e99c6cef08
5 changed files with 187 additions and 105 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
/** 中控主题:暗色(默认)/ 亮色,localStorage hub-theme */
(function (global) {
const KEY = "hub-theme";
const META = { dark: "#0b0e18", light: "#e8eef5" };
const META = { dark: "#0b0e18", light: "#d4dde8" };
function normalize(theme) {
return theme === "light" ? "light" : "dark";