From ae5f7c71187b22f46e862375f2279d5d600da57d Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 1 Apr 2026 08:45:25 +0200 Subject: [PATCH] Fix header logo color in dark mode Use CSS variable instead of hard-coded black so the logo text is visible on dark backgrounds. --- static/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/style.css b/static/style.css index 5754c44e8..bcdc8a385 100644 --- a/static/style.css +++ b/static/style.css @@ -124,7 +124,7 @@ header { } header .home { - color: black; + color: var(--fg-color); font-size: 2rem; font-weight: bold; }