flake/users/guanranwang/home-manager/modules/terms/foot.nix
2023-11-15 20:55:27 +08:00

34 lines
999 B
Nix

{...}: {
programs.foot = {
enable = true;
settings = {
font = "monospace:size=12";
pad = "12x12 center";
colors = {
#"alpha" = 0.9;
# Tokyonight
"background" = "1a1b26";
"foreground" = "c0caf5";
"regular0" = "15161e"; # black
"regular1" = "f7768e"; # red
"regular2" = "9ece6a"; # green
"regular3" = "e0af68"; # yellow
"regular4" = "7aa2f7"; # blue
"regular5" = "bb9af7"; # magenta
"regular6" = "7dcfff"; # cyan
"regular7" = "a91bd6"; # white
"bright0" = "414868"; # bright black
"bright1" = "f7768e"; # bright red
"bright2" = "9ece6a"; # bright green
"bright3" = "e0af68"; # bright yellow
"bright4" = "7aa2f7"; # bright blue
"bright5" = "bb9af7"; # bright magenta
"bright6" = "7dcfff"; # bright cyan
"bright7" = "c0caf5"; # bright white
"16" = "ff9e64";
"17" = "db4b4b";
};
};
};
}