nixos-config/modules/home-manager/terminal/kitty/themes/retrofuturism/default.nix
2024-07-12 11:37:24 +09:00

45 lines
937 B
Nix

{ ... }:
{
programs.kitty = {
settings = {
foreground = "#f8f8f2";
background = "#4c4c4c";
selection_foreground = "#4c4c4c";
selection_background = "#e7e7e7";
# black
color0 = "#4c4c4c";
color8 = "#acacac";
# red
color1 = "#fe7394";
color9 = "#ffedf1";
# green
color2 = "#cacc73";
color10 = "#dadc9c";
# yellow
color3 = "#fedb5b";
color11 = "#fefbea";
# blue
color4 = "#7688ea";
color12 = "#edeffc";
# magenta
color5 = "#fac3ed";
color13 = "#fff6fe";
# cyan
color6 = "#96ceb4";
color14 = "#b8dfcd";
# white
color7 = "#e5e5cd";
color15 = "#f6f6ee";
};
};
}