11.stylix/modules/lazygit/hm.nix
Mikołaj Lercher 1284c1891b
lazygit: use consistent border colors (#1907)
Link: https://github.com/nix-community/stylix/pull/1907

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-09-24 23:56:38 +02:00

27 lines
664 B
Nix

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