diff --git a/home-modules/git.nix b/home-modules/git.nix index 2622e48..3d10803 100755 --- a/home-modules/git.nix +++ b/home-modules/git.nix @@ -56,13 +56,19 @@ lib.mkIf (user != "tv") windowSize = "normal"; gui.theme = with rice.color; { lightTheme = false; - activeBorderColor = [ border "bold"]; - inactiveBorderColor = [ black.bright ]; - optionsTextColor = [ blue.base ]; - selectedLineBgColor = [ foreground ]; - selectedRangeByColor = [ magenta.bright ]; + activeBorderColor = [ foreground "bold" ]; + inactiveBorderColor = [ border ]; + optionsTextColor = [ tertiary.base ]; + selectedLineBgColor = [ secondary.base ]; + selectedRangeByColor = [ weird.bright ]; showRandomTip = true; animateExplosion = true; + cherryPickedCommitFgColor = [ accent.base ]; # Foreground color of copied commit + cherryPickedCommitBgColor = [ secondary.dark ]; # Background color of copied commit + markedBaseCommitFgColor = [ accent.base ]; # Foreground color of marked base commit (for rebase) + markedBaseCommitBgColor = [ secondary.dark ]; # Background color of marked base commit (for rebase) + unstagedChangesColor = [ negative.base ]; # Color for file with unstaged changes + defaultFgColor = [ "default" ]; # Default text color }; }; };