Better colors

This commit is contained in:
Filippo Berto 2022-06-05 19:32:56 +02:00
parent 26a4a16638
commit ebfd68fc79
2 changed files with 3 additions and 7 deletions

View file

@ -36,7 +36,7 @@ let
selected = {
foreground = colorPalette.bright.white;
background = color.setAlphaRgba alpha (color.brighten 10 colorPalette.bright.black);
underline = builtins.trace colorPalette.bright.red colorPalette.bright.red;
underline = colorPalette.bright.red;
};
alert = colorPalette.bright.red;
@ -60,10 +60,7 @@ let
foreground = colors.normal.foreground;
line-size = 2;
line-color = colors.normal.underline;
padding = {
left = 0;
right = 0;
};
padding = { left = 0; right = 0; };
module.margin = { left = 0; right = 0; };
separator = " ";
border = {

View file

@ -14,13 +14,12 @@ in
blue = mkpm.blue;
green = mkpm.green;
red = mkpm.red;
white = mkpm.base7;
white = mkpm.base8;
yellow = mkpm.yellow;
};
bright = palette.brighten 10 normal // {
red = mkpm.orange;
black = mkpm.base3;
white = mkpm.base8;
};
dark = palette.darken 10 normal // {
black = mkpm.base0;