From 39d5e37c2c405652b83f5f6bb218d5334d31a530 Mon Sep 17 00:00:00 2001 From: yuyx <237899745@qq.com> Date: Thu, 27 Nov 2025 23:35:29 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=E4=BF=AE=E5=A4=8D=E4=BA=AE?= =?UTF-8?q?=E8=89=B2=E4=B8=BB=E9=A2=98=E5=AF=BC=E8=88=AA=E6=A0=8F=E6=96=87?= =?UTF-8?q?=E5=AD=97=E9=A2=9C=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加 .nav-item 深色文字颜色 - 修复悬停和激活状态的颜色 - 添加 .user-info 深色文字 - 修复用户头像图标颜色 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- frontend/app.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/frontend/app.html b/frontend/app.html index 262e9ec..8b63a1c 100644 --- a/frontend/app.html +++ b/frontend/app.html @@ -160,13 +160,27 @@ border-bottom: 1px solid rgba(102, 126, 234, 0.15); } + body.light-theme .nav-item { + color: #1a1a2e; + } + body.light-theme .nav-item:hover { background: rgba(102, 126, 234, 0.1); + color: #5a67d8; + } + + body.light-theme .nav-item.active { + color: white; } body.light-theme .user-info { background: rgba(102, 126, 234, 0.08); border-color: rgba(102, 126, 234, 0.2); + color: #1a1a2e; + } + + body.light-theme .user-info .user-avatar { + color: #5a67d8; } /* 亮色主题卡片 */