From e9a15fee351fe053f1a66c4988a6caabb9206357 Mon Sep 17 00:00:00 2001 From: buzz-lightsnack-2007 <73412182+buzz-lightsnack-2007@users.noreply.github.com> Date: Thu, 9 May 2024 13:02:58 +0800 Subject: [PATCH] rewrite gradient to make it work on light mode --- styles/colors/defaults.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles/colors/defaults.css b/styles/colors/defaults.css index 4e93e85..6253cc5 100644 --- a/styles/colors/defaults.css +++ b/styles/colors/defaults.css @@ -14,9 +14,9 @@ --primary-color-raised-focus-solid: rgba(221, 106, 59) !important; --primary-color-gradient: linear-gradient( 43deg, - var(--primary-color-dark) 0%, + var(--primary-color-raised-hover-solid) 0%, var(--primary-color) 62%, - var(--primary-color-raised-hover-solid) 100% + var(--primary-color-dark) 100% ) !important; --background-color-disabled: rgba(125, 125, 125) !important;