11.stylix/modules/lazygit/hm.nix
2025-05-21 17:06:48 -07:00

27 lines
664 B
Nix

{ mkTarget, ... }:
mkTarget {
name = "lazygit";
humanName = "lazygit";
configElements =
{ colors }:
{
programs.lazygit.settings.gui.theme = with colors.withHashtag; {
activeBorderColor = [
base07
"bold"
];
inactiveBorderColor = [ base04 ];
searchingActiveBorderColor = [
base02
"bold"
];
optionsTextColor = [ base06 ];
selectedLineBgColor = [ base03 ];
cherryPickedCommitBgColor = [ base02 ];
cherryPickedCommitFgColor = [ base03 ];
unstagedChangesColor = [ base08 ];
defaultFgColor = [ base05 ];
};
};
}