aboutsummaryrefslogtreecommitdiff
path: root/modules/lazygit.nix
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-04-07 15:50:45 -0400
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-04-07 15:50:45 -0400
commit3be52f10d1ed9844da116ad9364099d72cb6ded4 (patch)
tree092b460f8c065396c7bd9dbcb808f0e9d46f2ca4 /modules/lazygit.nix
parent993ee553170d01d3d0e7bcef7afc05b80f15b10a (diff)
downloadhome-3be52f10d1ed9844da116ad9364099d72cb6ded4.tar.gz
added colorscheme modularity
Diffstat (limited to 'modules/lazygit.nix')
-rw-r--r--modules/lazygit.nix22
1 files changed, 11 insertions, 11 deletions
diff --git a/modules/lazygit.nix b/modules/lazygit.nix
index cf5275e..c4a1bde 100644
--- a/modules/lazygit.nix
+++ b/modules/lazygit.nix
@@ -1,6 +1,7 @@
{ config, lib, pkgs, ... }:
let
cfg = config.modules.lazygit;
+ scheme = config.modules.scheme;
in
{
options.modules.lazygit = {
@@ -41,17 +42,16 @@ in
showRandomTip = false;
border = "single";
theme = {
- # activeBorderColor = [ "#8f8aac" "bold" ];
- activeBorderColor = [ "#8f8aac" "bold" ];
- inactiveBorderColor = [ "#4c4c4c" ];
- searchingActiveBorderColor = [ "#ceb188" ];
- optionsTextColor = [ "#8f8aac" ];
- selectedLineBgColor = [ "#262626" ];
- cherryPickedCommitBgColor = [ "#4c4c4c" ];
- cherryPickedCommitFgColor = [ "#8f8aac" ];
- markedBaseCommitFgColor = [ "#8f8aac" ];
- unstagedChangesColor = [ "#ac8a8c" ];
- defaultFgColor = [ "#cacaca" ];
+ activeBorderColor = [ scheme.base0D "bold" ];
+ inactiveBorderColor = [ scheme.base03 ];
+ searchingActiveBorderColor = [ scheme.base09 ];
+ optionsTextColor = [ scheme.base0D ];
+ selectedLineBgColor = [ scheme.base02 ];
+ cherryPickedCommitBgColor = [ scheme.base03 ];
+ cherryPickedCommitFgColor = [ scheme.base0D ];
+ markedBaseCommitFgColor = [ scheme.base0D ];
+ unstagedChangesColor = [ scheme.base0F ];
+ defaultFgColor = [ scheme.base05 ];
};
git = {
paging.useConfig = true;