From 8b06017d020aaf0e4249bf7666454fb99986bc62 Mon Sep 17 00:00:00 2001 From: Yuzhiran Dev Date: Sat, 11 Jul 2026 16:48:04 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BA=AE=E8=89=B2=E4=B8=BB=E9=A2=98?= =?UTF-8?q?=E5=85=A8=E6=96=B0=E9=85=8D=E8=89=B2(=E8=93=9D=E7=B4=AB)+?= =?UTF-8?q?=E8=B6=8B=E5=8A=BF=E7=AD=9B=E9=80=89=E6=8D=A2=E8=A1=8C+?= =?UTF-8?q?=E6=89=80=E6=9C=89=E9=A1=B5=E9=9D=A2=E7=A1=AC=E7=BC=96=E7=A0=81?= =?UTF-8?q?=E6=9B=BF=E6=8D=A2=E4=B8=BACSS=E5=8F=98=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/App.vue | 168 +++++++++--------- client/src/pages.json | 16 +- .../src/pages/achievements/achievements.vue | 6 +- client/src/pages/chat/chat.vue | 8 +- client/src/pages/dimension/dimension.vue | 4 +- client/src/pages/leaderboard/leaderboard.vue | 2 +- client/src/pages/payment/payment.vue | 2 +- client/src/pages/profile/profile.vue | 14 +- client/src/pages/progress/progress.vue | 12 +- client/src/pages/trend/trend.vue | 10 +- client/src/styles/theme.scss | 16 +- 11 files changed, 131 insertions(+), 127 deletions(-) diff --git a/client/src/App.vue b/client/src/App.vue index 0c6fc75..631fbae 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -47,16 +47,16 @@ function applyTabBarTheme(theme) { try { if (theme === 'dark') { uni.setTabBarStyle({ - color: 'rgba(255,255,255,0.25)', - selectedColor: '#b388ff', - backgroundColor: '#08080f', + color: 'rgba(255,255,255,0.35)', + selectedColor: '#a78bfa', + backgroundColor: '#0d0d1a', borderStyle: 'black' }) } else { uni.setTabBarStyle({ - color: 'rgba(0,0,0,0.35)', - selectedColor: '#7c4dff', - backgroundColor: '#ffffff', + color: 'rgba(99,102,241,0.4)', + selectedColor: '#6366f1', + backgroundColor: '#f0f2f8', borderStyle: 'white' }) } @@ -69,82 +69,82 @@ function applyTabBarTheme(theme) {