home: i3: finish up theme
This commit is contained in:
parent
28a296435a
commit
f6f0cfb3ba
|
@ -24,6 +24,7 @@ let
|
||||||
colorAqua = "#689d68";
|
colorAqua = "#689d68";
|
||||||
colorGray = "#a89984";
|
colorGray = "#a89984";
|
||||||
colorDarkGray = "#1d2021";
|
colorDarkGray = "#1d2021";
|
||||||
|
colorWhite = "#ffffff";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf isEnabled {
|
config = lib.mkIf isEnabled {
|
||||||
|
@ -76,10 +77,43 @@ in
|
||||||
background = colorRed;
|
background = colorRed;
|
||||||
text = colorBg;
|
text = colorBg;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
separator = colorRed;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
colors = {
|
||||||
|
focused = {
|
||||||
|
border = colorBlue;
|
||||||
|
background = colorBlue;
|
||||||
|
text = colorDarkGray;
|
||||||
|
indicator = colorPurple;
|
||||||
|
childBorder = colorDarkGray;
|
||||||
|
};
|
||||||
|
focusedInactive = {
|
||||||
|
border = colorDarkGray;
|
||||||
|
background = colorDarkGray;
|
||||||
|
text = colorYellow;
|
||||||
|
indicator = colorPurple;
|
||||||
|
childBorder = colorDarkGray;
|
||||||
|
};
|
||||||
|
unfocused = {
|
||||||
|
border = colorDarkGray;
|
||||||
|
background = colorDarkGray;
|
||||||
|
text = colorYellow;
|
||||||
|
indicator = colorPurple;
|
||||||
|
childBorder = colorDarkGray;
|
||||||
|
};
|
||||||
|
urgent = {
|
||||||
|
border = colorRed;
|
||||||
|
background = colorRed;
|
||||||
|
text = colorWhite;
|
||||||
|
indicator = colorRed;
|
||||||
|
childBorder = colorRed;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
focus = {
|
focus = {
|
||||||
followMouse = true;
|
followMouse = true;
|
||||||
mouseWarping = true;
|
mouseWarping = true;
|
||||||
|
|
Loading…
Reference in a new issue