From d08071def2714d8da5e84fa97d3cf2e881a96790 Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 20 Oct 2025 20:28:04 +0200 Subject: [PATCH] fix: improve contrast for highlighted text in login screen - Change login-highlight text color from var(--color-text) to #000000 - Ensures proper contrast against bright yellow highlight background in dark mode - Fixes readability issue where light gray text was hard to read on yellow background --- src/styles/components/login.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/components/login.css b/src/styles/components/login.css index b850dfa1..d9195b7d 100644 --- a/src/styles/components/login.css +++ b/src/styles/components/login.css @@ -29,7 +29,7 @@ .login-highlight { background-color: var(--highlight-color-mine, #fde047); - color: var(--color-text); + color: #000000; padding: 0.125rem 0.25rem; border-radius: 3px; font-weight: 500;