From ee35cef0f1a9339a868855c1f2cea007859ebd52 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Sun, 23 Jun 2024 23:41:43 +0300 Subject: [PATCH] Fuzzle : Brighter selection for better contrast. --- user/common/fuzzel/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/user/common/fuzzel/default.nix b/user/common/fuzzel/default.nix index 97c3f7a7..e433a93c 100644 --- a/user/common/fuzzel/default.nix +++ b/user/common/fuzzel/default.nix @@ -19,13 +19,13 @@ in { colors = let defaultOpacity = "ff"; in { - background = style.color.bg.dark + style.opacity.hex; - border = style.color.border + style.opacity.hex; - match = style.color.fg.light + defaultOpacity; - selection = style.color.bg.dark + defaultOpacity; - selection-match = style.color.accent + defaultOpacity; - selection-text = style.color.fg.light + defaultOpacity; - text = style.color.fg.light + defaultOpacity; + background = style.color.bg.dark + style.opacity.hex; + border = style.color.border + style.opacity.hex; + match = style.color.fg.light + defaultOpacity; + selection = style.color.bg.regular + defaultOpacity; + selection-match = style.color.accent + defaultOpacity; + selection-text = style.color.fg.light + defaultOpacity; + text = style.color.fg.light + defaultOpacity; }; }; }