aboutsummaryrefslogtreecommitdiffstats
path: root/frontend-vanilla/src
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-16 19:45:59 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-16 19:45:59 -0800
commit82c9194786f28a9cbd8e95dc974b940e78274feb (patch)
treed449aa1ef9362d652695a0960de24cee0dd6ced6 /frontend-vanilla/src
parentcba29e6aae637b04ff6eaf28f74bc15b6242b9ea (diff)
downloadneko-82c9194786f28a9cbd8e95dc974b940e78274feb.tar.gz
neko-82c9194786f28a9cbd8e95dc974b940e78274feb.tar.bz2
neko-82c9194786f28a9cbd8e95dc974b940e78274feb.zip
Update V3 dark mode to use true black background (#000000) matching V1 legacy theme
Diffstat (limited to 'frontend-vanilla/src')
-rw-r--r--frontend-vanilla/src/style.css10
1 files changed, 5 insertions, 5 deletions
diff --git a/frontend-vanilla/src/style.css b/frontend-vanilla/src/style.css
index 65a57b4..a3a7978 100644
--- a/frontend-vanilla/src/style.css
+++ b/frontend-vanilla/src/style.css
@@ -454,11 +454,11 @@ select:focus {
/* Themes */
.theme-dark {
- --bg-color: #24292e;
+ --bg-color: #000000;
--text-color: #ffffff;
- --sidebar-bg: #1b1f23;
+ --sidebar-bg: #000000;
--link-color: #5ac8fa;
- --border-color: #444d56;
+ --border-color: #333333;
--accent-color: #2188ff;
}
@@ -528,9 +528,9 @@ button.active {
.theme-dark input,
.theme-dark select {
- background-color: #1b1f23;
+ background-color: #111;
color: #ffffff;
- border-color: #444d56;
+ border-color: #333;
}
.add-feed-form {