fix: RubyText 深色模式逐字高亮颜色被覆盖(.dark 变体)

This commit is contained in:
2026-08-13 16:04:22 +08:00
parent fd67912601
commit 950ca9194b
+2
View File
@@ -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); } }
</style>