From f9e99d5faa2bffb3bd7fca039de249804b64cc58 Mon Sep 17 00:00:00 2001 From: Mohan Date: Mon, 10 Aug 2026 19:47:40 +0800 Subject: [PATCH] =?UTF-8?q?fix(theme):=20use=20'=E6=98=BC'=20instead=20of?= =?UTF-8?q?=20'=E6=97=A5',=20improve=20disabled=20text=20contrast?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - App.vue: change toggle label from '日' to '昼' (proper pairing with '夜') - song-theme.css: light mode --song-text-disabled #9aa7ad → #7e8f98 for better visibility --- src/App.vue | 2 +- src/styles/song-theme.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index 4d6aa37..d14adad 100644 --- a/src/App.vue +++ b/src/App.vue @@ -45,7 +45,7 @@ async function handleLogout() { type="button" :title="theme.isDark ? '切至天青昼' : '切至黛墨夜'" @click="theme.toggle()" - >{{ theme.isDark ? '日' : '夜' }} + >{{ theme.isDark ? '昼' : '夜' }}
diff --git a/src/styles/song-theme.css b/src/styles/song-theme.css index 53e9ac3..42d3e81 100644 --- a/src/styles/song-theme.css +++ b/src/styles/song-theme.css @@ -12,7 +12,7 @@ --song-text: #3a4a52; --song-text-secondary: #5a6b74; - --song-text-disabled: #9aa7ad; + --song-text-disabled: #7e8f98; --song-primary: #4f78b8; --song-primary-bg: #e7eef9;