From caeb94082d0dc16bd3499e8d0b0b71daf2248525 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Tue, 19 May 2026 20:23:00 +0200 Subject: [PATCH] kitty: five-colors dark and light themes --- kitty/.config/kitty/kitty.conf | 2 +- .../kitty/themes/five-colors-dark.conf | 35 +++++++++++++++++++ .../kitty/themes/five-colors-light.conf | 35 +++++++++++++++++++ xsession/bin/lupan-set-theme | 4 +-- 4 files changed, 73 insertions(+), 3 deletions(-) create mode 100644 kitty/.config/kitty/themes/five-colors-dark.conf create mode 100644 kitty/.config/kitty/themes/five-colors-light.conf diff --git a/kitty/.config/kitty/kitty.conf b/kitty/.config/kitty/kitty.conf index 6b9b1b0..ee4972c 100644 --- a/kitty/.config/kitty/kitty.conf +++ b/kitty/.config/kitty/kitty.conf @@ -68,6 +68,6 @@ map ctrl+alt+shift+w detach_window map ctrl+alt+shift+x close_session . # BEGIN_KITTY_THEME -# Lupanbones-Dark +# Five-Colors-Dark include current-theme.conf # END_KITTY_THEME diff --git a/kitty/.config/kitty/themes/five-colors-dark.conf b/kitty/.config/kitty/themes/five-colors-dark.conf new file mode 100644 index 0000000..4f5c775 --- /dev/null +++ b/kitty/.config/kitty/themes/five-colors-dark.conf @@ -0,0 +1,35 @@ +# vim:ft=kitty + +foreground #a29e98 +background #272117 +selection_foreground #272117 +selection_background #276c9a + +cursor #73d0b1 +cursor_text_color #272117 + +active_border_color #276c9a +inactive_border_color #b0bcc7 + +active_tab_foreground #9da0af +active_tab_background #4d5580 +inactive_tab_foreground #1f212e +inactive_tab_background #808080 + +color0 #85919b +color1 #c37583 +color2 #44a386 +color3 #af8842 +color4 #5396c7 +color5 #a57cba +color6 #2da0ad +color7 #b0bcc7 + +color8 #85919b +color9 #f2a0ae +color10 #73d0b1 +color11 #dcb46e +color12 #7fc3f5 +color13 #d2a8e8 +color14 #62cdda +color15 #a29e98 diff --git a/kitty/.config/kitty/themes/five-colors-light.conf b/kitty/.config/kitty/themes/five-colors-light.conf new file mode 100644 index 0000000..d1635ea --- /dev/null +++ b/kitty/.config/kitty/themes/five-colors-light.conf @@ -0,0 +1,35 @@ +# vim:ft=kitty + +foreground #696257 +background #faf8f5 +selection_foreground #faf8f5 +selection_background #3a7ead + +cursor #7ad6b7 +cursor_text_color #faf8f5 + +active_border_color #85c9fc +inactive_border_color #919da7 + +active_tab_foreground #1f212e +active_tab_background #a6c7f2 +inactive_tab_foreground #faf8f5 +inactive_tab_background #808080 + +color0 #272117 +color1 #d0818f +color2 #52af92 +color3 #bc944f +color4 #60a3d4 +color5 #b289c7 +color6 #3dadba +color7 #b6c3cd + +color8 #919da7 +color9 #85c9fc +color10 #7ad6b7 +color11 #e3ba74 +color12 #60a3d4 +color13 #d9aeee +color14 #85c9fc +color15 #faf8f5 diff --git a/xsession/bin/lupan-set-theme b/xsession/bin/lupan-set-theme index 9b7c0b7..949e289 100755 --- a/xsession/bin/lupan-set-theme +++ b/xsession/bin/lupan-set-theme @@ -46,9 +46,9 @@ fi XSET=$(readlink -e ~/.config/xsettingsd/xsettingsd.conf) if [ "$THEME" = dark ]; then - kitten themes --reload-in=all 'lupanbones-dark' + kitten themes --reload-in=all 'five-colors-dark' elif [ "$THEME" = light ]; then - kitten themes --reload-in=all 'lupanbones-light' + kitten themes --reload-in=all 'five-colors-light' fi # GTK