45 lines
953 B
Nix
45 lines
953 B
Nix
{ theme, ... }:
|
|
|
|
let
|
|
p = theme.palette;
|
|
in
|
|
{
|
|
wayland.windowManager.sway.config.colors = {
|
|
background = p.darkestGray;
|
|
focused = {
|
|
background = p.darkestGray;
|
|
border = p.purple;
|
|
childBorder = p.purple;
|
|
indicator = p.green;
|
|
text = p.lightGray;
|
|
};
|
|
focusedInactive = {
|
|
background = p.darkestGray;
|
|
border = p.gray;
|
|
childBorder = p.gray;
|
|
indicator = p.green;
|
|
text = p.lightGray;
|
|
};
|
|
placeholder = {
|
|
background = p.darkestGray;
|
|
border = p.gray;
|
|
childBorder = p.gray;
|
|
indicator = p.green;
|
|
text = p.lightGray;
|
|
};
|
|
unfocused = {
|
|
background = p.darkestGray;
|
|
border = p.gray;
|
|
childBorder = p.gray;
|
|
indicator = p.green;
|
|
text = p.lightGray;
|
|
};
|
|
urgent = {
|
|
background = p.darkestGray;
|
|
border = p.red;
|
|
childBorder = p.red;
|
|
indicator = p.green;
|
|
text = p.lightGray;
|
|
};
|
|
};
|
|
}
|