fix(theme): improve light mode contrast across instance and options pages

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dekun
2026-07-07 12:23:22 +08:00
parent afb191f90a
commit 11a50c02cd
5 changed files with 155 additions and 20 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
(function (global) {
const STANDALONE_KEY = "instance-theme";
const HUB_LINKED_THEME_KEY = "hub-linked-theme";
const META = { dark: "#0b0d14", light: "#d8e2ec" };
const META = { dark: "#0b0d14", light: "#c8d4de" };
function normalize(theme) {
return theme === "light" ? "light" : "dark";