v1.4.0 - bugfix

This commit is contained in:
LINING-PC\lining
2025-10-11 21:16:59 +08:00
parent 243c2da636
commit 6049e50fb6
4 changed files with 56 additions and 42 deletions
+22
View File
@@ -80,3 +80,25 @@
background: #ebb563;
border-color: #ebb563;
}
/* 黑暗模式全局样式 */
html[data-theme='dark'] {
background: #1e1e1e !important;
color-scheme: dark !important;
}
html[data-theme='dark'] body {
background: #1e1e1e !important;
color: #e5e5e5 !important;
}
/* 明亮模式全局样式 */
html[data-theme='light'] {
background: #ffffff !important;
color-scheme: light !important;
}
html[data-theme='light'] body {
background: #ffffff !important;
color: #333333 !important;
}