From 9797746c0d1e5b5c6aff1ec198a8ef952be3d645 Mon Sep 17 00:00:00 2001 From: floriankilian <34104015+floriankilian@users.noreply.github.com> Date: Fri, 1 Aug 2025 08:47:30 +0200 Subject: [PATCH] Further Darken Background Image for Dark Mode - Issue #1238 (#1653) ## Description: Adjusted the CSS filter properties for the background image in dark mode by reducing brightness, adding saturation control, and increasing contrast. Fixes #1238 Screenshots: From: CleanShot Google Chrome 2025-07-31
at 11 00 58@2x To: CleanShot Google Chrome 2025-07-31
at 11 01 03@2x ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced - [x] I have read and accepted the CLA agreement (only required once). ## Please put your Discord username so you can be contacted if a bug or regression is found: [UN] nvm --- src/client/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/index.html b/src/client/index.html index 77a678ba7..c18e82c52 100644 --- a/src/client/index.html +++ b/src/client/index.html @@ -42,7 +42,7 @@ } .dark .bg-image { - filter: blur(4px) brightness(0.7); + filter: blur(4px) brightness(0.4) saturate(0.3) contrast(1.2); } /* display:none if child has class parent-hidden since we can't use shadow DOM in Lit due to Tailwind */