24 colors for foot

This commit is contained in:
joy 2024-10-19 20:15:02 +02:00
parent fedfe43f28
commit 362a146b3d
2 changed files with 21 additions and 9 deletions

View file

@ -1,20 +1,31 @@
{lib, ...}: { {
programs.foot = { programs.foot = {
enable = true; enable = true;
settings = { settings = {
main = { main = {
pad = "2x2"; pad = "2x2";
font = "RobotoMono Nerd Font:size=12";
}; };
colors = { colors = {
"bright0" = lib.mkForce "504945"; "foreground" = "d5c4a1";
"bright1" = lib.mkForce "fb4934"; "background" = "282828";
"bright2" = lib.mkForce "b8bb26"; "regular0" = "282828";
"bright3" = lib.mkForce "fabd2f"; "regular1" = "cc241d";
"bright4" = lib.mkForce "83a598"; "regular2" = "98971a";
"bright5" = lib.mkForce "d3869b"; "regular3" = "d79921";
"bright6" = lib.mkForce "8ec07c"; "regular4" = "458588";
"bright7" = lib.mkForce "ebdbb2"; "regular5" = "b16286";
"regular6" = "689d6a";
"regular7" = "d5c4a1";
"bright0" = "504945";
"bright1" = "fb4934";
"bright2" = "b8bb26";
"bright3" = "fabd2f";
"bright4" = "83a598";
"bright5" = "d3869b";
"bright6" = "8ec07c";
"bright7" = "ebdbb2";
}; };
}; };
}; };

View file

@ -54,4 +54,5 @@ in {
}; };
}; };
}; };
home-manager.users.joy.stylix.targets.foot.enable = false;
} }