From 0c92fcd68651dd52fc6769697f7058011c1bd0f4 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Wed, 23 Oct 2024 00:16:28 +0200 Subject: [PATCH] lzg theeme --- home-modules/git.nix | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) 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 }; }; };