65 lines
1.1 KiB
Nix
65 lines
1.1 KiB
Nix
let
|
|
colors = import ./colors.nix;
|
|
in
|
|
with colors;
|
|
{
|
|
bar = {
|
|
background = base3;
|
|
statusline = yellow;
|
|
separator = red;
|
|
|
|
focusedWorkspace = {
|
|
border = blue;
|
|
background = blue;
|
|
text = base3; # base2 ?
|
|
};
|
|
inactiveWorkspace = {
|
|
border = base2;
|
|
background = base2;
|
|
text = base00;
|
|
};
|
|
activeWorkspace = {
|
|
border = blue;
|
|
background = base2;
|
|
text = yellow;
|
|
};
|
|
urgentWorkspace = {
|
|
border = red;
|
|
background = red;
|
|
text = base3;
|
|
};
|
|
};
|
|
|
|
focused = {
|
|
border = blue;
|
|
background = blue;
|
|
text = base3;
|
|
indicator = magenta;
|
|
childBorder = blue;
|
|
};
|
|
|
|
focusedInactive = {
|
|
border = base2;
|
|
background = base2;
|
|
text = base00;
|
|
indicator = magenta;
|
|
childBorder = base2;
|
|
};
|
|
|
|
unfocused = {
|
|
border = base2;
|
|
background = base2;
|
|
text = base00;
|
|
indicator = magenta;
|
|
childBorder = base2;
|
|
};
|
|
|
|
urgent = {
|
|
border = orange;
|
|
background = orange;
|
|
text = base3;
|
|
indicator = magenta;
|
|
childBorder = orange;
|
|
};
|
|
}
|