From 950ca9194bfbcef8a01adba95d438b6088999722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=96=8C?= <259278618@qq.com> Date: Thu, 13 Aug 2026 16:04:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20RubyText=20=E6=B7=B1=E8=89=B2=E6=A8=A1?= =?UTF-8?q?=E5=BC=8F=E9=80=90=E5=AD=97=E9=AB=98=E4=BA=AE=E9=A2=9C=E8=89=B2?= =?UTF-8?q?=E8=A2=AB=E8=A6=86=E7=9B=96=EF=BC=88.dark=20=E5=8F=98=E4=BD=93?= =?UTF-8?q?=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui-src/src/components/RubyText.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui-src/src/components/RubyText.vue b/ui-src/src/components/RubyText.vue index 01b2b26..d4f7e60 100644 --- a/ui-src/src/components/RubyText.vue +++ b/ui-src/src/components/RubyText.vue @@ -54,5 +54,7 @@ export default { } .ruby-hl { color: #ff6b35; font-weight: 700; } .ruby-cur { color: #ff6b35; font-weight: 800; animation: cur-pop 0.3s ease; } +.dark .ruby-hl { color: #ff8a5c; font-weight: 700; } +.dark .ruby-cur { color: #ff8a5c; font-weight: 800; animation: cur-pop 0.3s ease; } @keyframes cur-pop { 0% { transform: scale(1.35); } 100% { transform: scale(1.15); } }