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