feat: support bilibili evolved's components style in dark mode (#1026)

This commit is contained in:
Hakadao
2024-09-26 00:17:01 +08:00
parent b26791b0d6
commit aa059a2fc5
2 changed files with 15 additions and 0 deletions

View File

@@ -115,6 +115,10 @@
background-color: transparent;
}
.feeds-filter {
background-color: var(--bew-content-solid);
}
.opus-module-content blockquote:before {
background-color: var(--bew-text-4);
}

View File

@@ -186,4 +186,15 @@ img {
color: var(--bew-text-1) !important;
fill: var(--bew-text-1) !important;
}
// Bilibili Evolved's top bar
&.dark .custom-navbar.blur:not(.transparent, .fill) {
--navbar-background: var(--bew-elevated);
--navbar-foreground: var(--bew-text-1);
}
&.dark .custom-navbar:not(.transparent, .blur, .fill) {
--navbar-background: var(--bew-elevated-solid);
--navbar-foreground: var(--bew-text-1);
}
}