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) {