From 4f68e368b949b51196342ef7a88a1ea8d74d43e5 Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Thu, 2 Jan 2025 22:56:56 +0100 Subject: [PATCH] Make kitty use more mc friendly theme --- modules/home/kitty/default.nix | 5 ++- modules/home/kitty/theme-one-half-dark.conf | 44 +++++++++++++++++++++ 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 modules/home/kitty/theme-one-half-dark.conf diff --git a/modules/home/kitty/default.nix b/modules/home/kitty/default.nix index 8760263..d6b8c2a 100644 --- a/modules/home/kitty/default.nix +++ b/modules/home/kitty/default.nix @@ -32,7 +32,10 @@ in programs.kitty = { enable = true; shellIntegration.enableFishIntegration = true; - themeFile = "Catppuccin-Mocha"; + # themeFile = "Catppuccin-Mocha"; + extraConfig = '' + include ${./theme-one-half-dark.conf} + ''; settings = { enable_audio_bell = false; confirm_os_window_close = 0; # no ask on quit diff --git a/modules/home/kitty/theme-one-half-dark.conf b/modules/home/kitty/theme-one-half-dark.conf new file mode 100644 index 0000000..1c7dfe0 --- /dev/null +++ b/modules/home/kitty/theme-one-half-dark.conf @@ -0,0 +1,44 @@ +# vim:ft=kitty +## name: One Half Dark +## author: Son A. Pham +## license: MIT +## upstream: https://raw.githubusercontent.com/sonph/onehalf/master/kitty/onehalf-dark.conf +## blurb: Clean, vibrant and pleasing color scheme + +foreground #dcdfe4 +background #282c34 +selection_foreground #000000 +selection_background #FFFACD +url_color #0087BD + +# black +color0 #282c34 +color8 #5d677a + +# red +color1 #e06c75 +color9 #e06c75 + +# green +color2 #98c379 +color10 #98c379 + +# yellow +color3 #e5c07b +color11 #e5c07b + +# blue +color4 #61afef +color12 #61afef + +# magenta +color5 #c678dd +color13 #c678dd + +# cyan +color6 #56b6c2 +color14 #56b6c2 + +# white +color7 #dcdfe4 +color15 #dcdfe4