Better colors
This commit is contained in:
parent
26a4a16638
commit
ebfd68fc79
2 changed files with 3 additions and 7 deletions
|
|
@ -36,7 +36,7 @@ let
|
||||||
selected = {
|
selected = {
|
||||||
foreground = colorPalette.bright.white;
|
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 = builtins.trace colorPalette.bright.red colorPalette.bright.red;
|
underline = colorPalette.bright.red;
|
||||||
};
|
};
|
||||||
|
|
||||||
alert = colorPalette.bright.red;
|
alert = colorPalette.bright.red;
|
||||||
|
|
@ -60,10 +60,7 @@ let
|
||||||
foreground = colors.normal.foreground;
|
foreground = colors.normal.foreground;
|
||||||
line-size = 2;
|
line-size = 2;
|
||||||
line-color = colors.normal.underline;
|
line-color = colors.normal.underline;
|
||||||
padding = {
|
padding = { left = 0; right = 0; };
|
||||||
left = 0;
|
|
||||||
right = 0;
|
|
||||||
};
|
|
||||||
module.margin = { left = 0; right = 0; };
|
module.margin = { left = 0; right = 0; };
|
||||||
separator = " ";
|
separator = " ";
|
||||||
border = {
|
border = {
|
||||||
|
|
|
||||||
3
rice.nix
3
rice.nix
|
|
@ -14,13 +14,12 @@ in
|
||||||
blue = mkpm.blue;
|
blue = mkpm.blue;
|
||||||
green = mkpm.green;
|
green = mkpm.green;
|
||||||
red = mkpm.red;
|
red = mkpm.red;
|
||||||
white = mkpm.base7;
|
white = mkpm.base8;
|
||||||
yellow = mkpm.yellow;
|
yellow = mkpm.yellow;
|
||||||
};
|
};
|
||||||
bright = palette.brighten 10 normal // {
|
bright = palette.brighten 10 normal // {
|
||||||
red = mkpm.orange;
|
red = mkpm.orange;
|
||||||
black = mkpm.base3;
|
black = mkpm.base3;
|
||||||
white = mkpm.base8;
|
|
||||||
};
|
};
|
||||||
dark = palette.darken 10 normal // {
|
dark = palette.darken 10 normal // {
|
||||||
black = mkpm.base0;
|
black = mkpm.base0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue