From d2f786fcd8b69fcbfe0c06233b9e3586632a5c73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Sun, 4 Jun 2023 01:14:23 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20remove=20hardcoded=20color?= =?UTF-8?q?=20values?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hosts/neodymium/home/gtk/default.nix | 1 - hosts/neodymium/home/wayland/eww/eww.scss | 12 ++++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/hosts/neodymium/home/gtk/default.nix b/hosts/neodymium/home/gtk/default.nix index 9b472b1..ef9f0d4 100644 --- a/hosts/neodymium/home/gtk/default.nix +++ b/hosts/neodymium/home/gtk/default.nix @@ -25,7 +25,6 @@ size = "compact"; }; }; - }; home.pointerCursor = { diff --git a/hosts/neodymium/home/wayland/eww/eww.scss b/hosts/neodymium/home/wayland/eww/eww.scss index a63bc06..456a9a5 100644 --- a/hosts/neodymium/home/wayland/eww/eww.scss +++ b/hosts/neodymium/home/wayland/eww/eww.scss @@ -23,10 +23,10 @@ $colors: $rosewater, $flamingo, $pink, $mauve, $red, $maroon, $peach, $yellow, $ .text { padding: 0 5px; color: $crust; - background-color: mix(nth($colors, $i), #4E4365, 30%); + background-color: mix(nth($colors, $i), $mantle, 30%); &.active { - background-color: mix(nth($colors, $i), #4E4365, 100%); + background-color: mix(nth($colors, $i), $mantle, 100%); } &.empty { @@ -39,11 +39,11 @@ $colors: $rosewater, $flamingo, $pink, $mauve, $red, $maroon, $peach, $yellow, $ margin-top: -1px; &.up { - color: mix(nth($colors, $i), #4E4365, 30%); + color: mix(nth($colors, $i), $mantle, 30%); } &.up.active { - color: mix(nth($colors, $i), #4E4365, 100%); + color: mix(nth($colors, $i), $mantle, 100%); } &.down { @@ -56,10 +56,10 @@ $colors: $rosewater, $flamingo, $pink, $mauve, $red, $maroon, $peach, $yellow, $ @else { &.active { - color: mix(nth($colors, $i + 1), #4E4365, 100%); + color: mix(nth($colors, $i + 1), $mantle, 100%); } - color: mix(nth($colors, $i + 1), #4E4365, 30%); + color: mix(nth($colors, $i + 1), $mantle, 30%); } } }