From 82c9194786f28a9cbd8e95dc974b940e78274feb Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Mon, 16 Feb 2026 19:45:59 -0800 Subject: Update V3 dark mode to use true black background (#000000) matching V1 legacy theme --- frontend-vanilla/src/style.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'frontend-vanilla/src/style.css') 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 { -- cgit v1.2.3