commit c05c0ad5c07d74e48070eae5d162b2a9b35c4207
parent 50e78038e7536200a2a2b9ae1a3aca3bcbf10df6
Author: Francesco Saccone <francesco@francescosaccone.com>
Date: Sun, 6 Apr 2025 18:55:05 +0200
style: shorten colors.background with inherit
Signed-off-by: Francesco Saccone <francesco@francescosaccone.com>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/home/sway/default.nix b/modules/home/sway/default.nix
@@ -85,7 +85,7 @@
text = colors.background;
};
focusedInactive = {
- background = colors.background;
+ inherit (colors) background;
border = colors.background;
childBorder = colors.background;
indicator = colors.background;
@@ -93,7 +93,7 @@
};
unfocused = focusedInactive;
urgent = {
- background = colors.background;
+ inherit (colors) background;
border = colors.red;
childBorder = colors.background;
indicator = colors.background;