Fuzzle : Brighter selection for better contrast.

This commit is contained in:
Dmitry Voronin 2024-06-23 23:41:43 +03:00
parent 5107c255ef
commit ee35cef0f1
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -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;
};
};
}