Yazi : Bright borders for popups.

This commit is contained in:
Dmitry Voronin 2024-06-26 20:50:27 +03:00
parent 12caeea867
commit 9e6b305896
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -2,6 +2,9 @@
border = { border = {
fg = "#${config.module.style.color.border}"; fg = "#${config.module.style.color.border}";
}; };
borderLight = {
fg = "#${config.module.style.color.accent}";
};
in { in {
file = (pkgs.formats.toml {}).generate "YaziThemeConfig" { file = (pkgs.formats.toml {}).generate "YaziThemeConfig" {
manager = { manager = {
@ -22,9 +25,9 @@ in {
bg = "#${config.module.style.color.accent}"; bg = "#${config.module.style.color.accent}";
}; };
}; };
select = { inherit border; }; select = { inherit borderLight; };
input = { inherit border; }; input = { inherit borderLight; };
completion = { inherit border; }; completion = { inherit borderLight; };
tasks = { inherit border; }; tasks = { inherit borderLight; };
}; };
} }