diff options
Diffstat (limited to '.config/kitty/kitty.conf')
-rw-r--r-- | .config/kitty/kitty.conf | 109 |
1 files changed, 49 insertions, 60 deletions
diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf index cc318a4..3f67c81 100644 --- a/.config/kitty/kitty.conf +++ b/.config/kitty/kitty.conf @@ -5,6 +5,10 @@ confirm_os_window_close 0 window_padding_width 5 cursor_blink_interval 0 +bold_font auto +italic_font auto +bold_italic_font auto + map alt+c copy_to_clipboard map alt+v paste_from_clipboard @@ -18,73 +22,58 @@ map alt+0 change_font_size all 0 map alt+l open_url_with_hints # THEME -# The basic colors -foreground #cdd6f4 -background #1e1e2e -selection_foreground #1e1e2e -selection_background #f5e0dc - -# Cursor colors -cursor #f5e0dc -cursor_text_color #1e1e2e - -# URL underline color when hovering with mouse -url_color #f5e0dc - -# Kitty window border colors -active_border_color #b4befe -inactive_border_color #6c7086 -bell_border_color #f9e2af - -# OS Window titlebar colors -wayland_titlebar_color system -macos_titlebar_color system - -# Tab bar colors -active_tab_foreground #11111b -active_tab_background #cba6f7 -inactive_tab_foreground #cdd6f4 -inactive_tab_background #181825 -tab_bar_background #11111b - -# Colors for marks (marked text in the terminal) -mark1_foreground #1e1e2e -mark1_background #b4befe -mark2_foreground #1e1e2e -mark2_background #cba6f7 -mark3_foreground #1e1e2e -mark3_background #74c7ec - -# The 16 terminal colors - -# black -color0 #45475a -color8 #585b70 +# Based on https://github.com/morhetz/gruvbox by morhetz <morhetz@gmail.com> +# Adapted to kitty by wdomitrz <witekdomitrz@gmail.com> + +cursor #928374 +cursor_text_color background + +url_color #83a598 + +visual_bell_color #8ec07c +bell_border_color #8ec07c + +active_border_color #d3869b +inactive_border_color #665c54 + +foreground #ebdbb2 +background #282828 +selection_foreground #928374 +selection_background #ebdbb2 + +active_tab_foreground #fbf1c7 +active_tab_background #665c54 +inactive_tab_foreground #a89984 +inactive_tab_background #3c3836 + +# black (bg3/bg4) +color0 #665c54 +color8 #7c6f64 # red -color1 #f38ba8 -color9 #f38ba8 +color1 #cc241d +color9 #fb4934 -# green -color2 #a6e3a1 -color10 #a6e3a1 +#: green +color2 #98971a +color10 #b8bb26 # yellow -color3 #f9e2af -color11 #f9e2af +color3 #d79921 +color11 #fabd2f # blue -color4 #89b4fa -color12 #89b4fa +color4 #458588 +color12 #83a598 -# magenta -color5 #f5c2e7 -color13 #f5c2e7 +# purple +color5 #b16286 +color13 #d3869b -# cyan -color6 #94e2d5 -color14 #94e2d5 +# aqua +color6 #689d6a +color14 #8ec07c -# white -color7 #bac2de -color15 #a6adc8 +# white (fg4/fg3) +color7 #a89984 +color15 #bdae93 |