From 77884d05f2f149a68a240540c70721bb401e1efd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o?= Date: Mon, 31 Oct 2022 19:39:52 +0100 Subject: [PATCH] Fix color for light contrast text (#873) The color for the variable whoogle-contrast-text should be black or gray; otherwise it will not be shown with white background. --- app/static/css/variables.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/static/css/variables.css b/app/static/css/variables.css index e53d157..5d6aaec 100644 --- a/app/static/css/variables.css +++ b/app/static/css/variables.css @@ -5,7 +5,7 @@ --whoogle-page-bg: #ffffff; --whoogle-element-bg: #4285f4; --whoogle-text: #000000; - --whoogle-contrast-text: #ffffff; + --whoogle-contrast-text: #70757a; --whoogle-secondary-text: #70757a; --whoogle-result-bg: #ffffff; --whoogle-result-title: #1967d2;