From 2a5407f6bd94753edcc947f3d6c0b1ae76e2a467 Mon Sep 17 00:00:00 2001 From: Joshua Chen Date: Thu, 20 Jan 2022 21:50:49 +0800 Subject: [PATCH] fix(website): restore some site CSS in light mode (#6420) --- website/src/css/custom.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/website/src/css/custom.css b/website/src/css/custom.css index 57e2354bd6..eedd259a06 100644 --- a/website/src/css/custom.css +++ b/website/src/css/custom.css @@ -29,6 +29,11 @@ ); --ifm-color-feedback-background: #fff; + --site-color-favorite-background: #f6fdfd; + --site-color-tooltip: #fff; + --site-color-tooltip-background: #353738; + --site-color-svgIcon-favorite: #e9669e; + --site-color-checkbox-checked-bg: hsl(167deg 56% 73% / 25%); } html[data-theme='dark'] { @@ -46,9 +51,6 @@ html[data-theme='dark'] { var(--site-primary-hue-saturation-light), 73% ); - --site-color-tooltip: #fff; - --site-color-tooltip-background: #353738; - --site-color-svgIcon-favorite: #e9669e; --site-color-feedback-background: #f0f8ff; --site-color-favorite-background: #1d1e1e; --site-color-checkbox-checked-bg: hsl(167deg 56% 73% / 10%);