From 4125de4a60829b26e5eea11744a62c5f9e7ba4f9 Mon Sep 17 00:00:00 2001 From: Shubham Padia Date: Wed, 11 Jun 2025 12:16:44 +0530 Subject: [PATCH] css: Use hsl for action-button icon colors. We only change this for `.action-button i` and `.action-button:hover i` since we need to make the dnd icon lighter in comparison to these two. These are the two that are absolutely necessary to change, we can also change others to hsl color space after discussion on CZO. --- app/renderer/css/main.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/renderer/css/main.css b/app/renderer/css/main.css index 0898191f..fd58c6e6 100644 --- a/app/renderer/css/main.css +++ b/app/renderer/css/main.css @@ -114,12 +114,12 @@ body { } .action-button i { - color: rgb(108 133 146 / 100%); + color: hsl(200.53deg 14.96% 49.8%); font-size: 28px; } .action-button:hover i { - color: rgb(152 169 179 / 100%); + color: hsl(202.22deg 15.08% 64.9%); } .action-button.active {