Better colors

This commit is contained in:
Filippo Berto 2022-11-05 17:09:57 +01:00
parent eeec8e4a78
commit 30e955e9d8
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED

View file

@ -32,13 +32,12 @@ let
active = {
foreground = colorPalette.bright.white;
background = color.setAlphaRgba alpha (colorPalette.normal.black);
underline = colorPalette.bright.blue;
underline = colorPalette.normal.yellow;
};
selected = {
foreground = colorPalette.bright.white;
background = color.setAlphaRgba alpha
(color.brighten 10 colorPalette.bright.black);
background = color.setAlphaRgba alpha (color.brighten 10 colorPalette.bright.black);
underline = colorPalette.bright.red;
};