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

45 lines
937 B
Nix

{ ... }:
{
programs.kitty = {
settings = {
foreground = "#e5e5cd";
background = "#413e3e";
selection_foreground = "#413e3e";
selection_background = "#e5e5cd";
# black
color0 = "#343232";
color8 = "#5c5656";
# red
color1 = "#fb5c82";
color9 = "#fea6bb";
# green
color2 = "#c2c561";
color10 = "#d9da98";
# yellow
color3 = "#fbd444";
color11 = "#fee68e";
# blue
color4 = "#6075e6";
color12 = "#a2aef1";
# magenta
color5 = "#f273d4";
color13 = "#f9b8ea";
# cyan
color6 = "#85c5a8";
color14 = "#b8dfcd";
# white
color7 = "#e5e5cc";
color15 = "#f7f7ee";
};
};
}