大改变

This commit is contained in:
YoRHa
2026-02-03 19:56:21 +08:00
parent 4b13d255bc
commit 9aa9e44295
545 changed files with 8712 additions and 16168 deletions

View File

@@ -7,11 +7,19 @@
--foreground: #111827;
--font-inter: 'Inter', sans-serif;
--font-jetbrains: 'JetBrains Mono', monospace;
/* HeroUI Button 默认颜色覆盖 - 日间模式 */
--btn-default-bg: #272E40;
--btn-default-text: #ffffff;
}
.dark {
--background: #111827;
--foreground: #f9fafb;
/* HeroUI Button 默认颜色覆盖 - 夜间模式 */
--btn-default-bg: #111827;
--btn-default-text: #ffffff;
}
* {
@@ -48,6 +56,26 @@ menu,
ol,
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInCard {
from {
opacity: 0;
transform: scale(0.95) translateY(20px);
}
to {
opacity: 1;
transform: scale(1) translateY(0);
}
}