Use milou theme

nvim: use milou theme

starship: update to milou scheme

fish: update to milou scheme

kitty: update to milou theme

starship: increase contrast in git modules

fzf: update to milou theme

nvim/lazy: update milou theme

fish/fzf.fish: use patdiff
This commit is contained in:
Primrose 2025-10-27 22:38:53 +08:00
parent e1407ff24e
commit 0c1f72b6e2
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
8 changed files with 86 additions and 87 deletions

View file

@ -14,7 +14,7 @@ in {
programs.kitty = lib.mkIf cfg.enable {
font.name = "family=\"Iosevka NFM\"";
settings = {
settings = rec {
# Make text thicker
text_composition_strategy = lib.mkIf pkgs.stdenv.isLinux "2.8 0";
@ -32,28 +32,28 @@ in {
cursor_stop_blinking_after = 15; # always blink
# theme
background = "#ffffff";
foreground = "#000000";
background = "#fdf6e3";
foreground = "#073642";
cursor = "#000000";
cursor_text_color = "#ffffff";
selection_background = "#bbbbbb";
color0 = "#000000";
selection_foreground = foreground;
selection_background = "#dbcba3";
color0 = "#073642";
color8 = "#4d4d4d";
color1 = "#ca1243";
color9 = "#e61955";
color2 = "#50a14f";
color10 = "#67c761";
color3 = "#e5bf6d";
color11 = "#ffdf84";
color4 = "#4078f2";
color12 = "#6296ff";
color5 = "#950095";
color13 = "#b000b0";
color6 = "#0184bc";
color14 = "#00a6e6";
color7 = "#bbbbbb";
color15 = "#ffffff";
selection_foreground = "#f8f8f8";
color1 = "#af005f";
color9 = "#d33682";
color2 = "#859900";
color10 = "#29a350";
color3 = "#ba9b23";
color11 = "#d6b429";
color4 = "#268bd2";
color12 = "#469edd";
color5 = "#5f5faf";
color13 = "#6060d1";
color6 = "#2aa198";
color14 = "#4bccc1"; # a platupus? perry the platupus?
color7 = "#a0a1a7";
color15 = "#eeeadd";
};
};
};