diff options
| author | bh <qn+git@epicurus.dev> | 2026-03-11 12:00:13 +0800 |
|---|---|---|
| committer | bh <qn+git@epicurus.dev> | 2026-03-11 12:00:13 +0800 |
| commit | aa768caf515c05e35058c94658dd74c2e6357783 (patch) | |
| tree | 7764d2f9aa57c13214569a5dde9b0b98a8576299 | |
| parent | 0b23e3ba793ee47d186a145c827e28df0b192377 (diff) | |
Fix and polish kitty configuration
| -rw-r--r-- | kitty/.config/kitty/kitty.conf | 11 | ||||
| -rw-r--r-- | kitty/.config/kitty/theme.conf | 65 | ||||
| -rw-r--r-- | kitty/.config/kitty/themes/Cobalt2.conf | 76 |
3 files changed, 70 insertions, 82 deletions
diff --git a/kitty/.config/kitty/kitty.conf b/kitty/.config/kitty/kitty.conf index 37af390..3804dc0 100644 --- a/kitty/.config/kitty/kitty.conf +++ b/kitty/.config/kitty/kitty.conf @@ -7,7 +7,7 @@ # Theme -include ~/.config/kitty/themes/Cobalt2.conf +include theme.conf # Font @@ -28,8 +28,6 @@ bold_italic_font auto font_size 10.5 # Terminal -foreground #8affff -background #003636 # background_opacity 0.60 background_opacity 0.75 # background_opacity 0.00 @@ -37,15 +35,16 @@ background_blur 1 window_padding_width 5 -# Color -selection_background #395e5e - # Scrolling scrollback_lines 10000 # Allows Remote Control allow_remote_control yes +# Tabs + +tab_bar_style powerline + # Bell visual_bell_duration 0.1 # bell_path ~/.config/kitty/bell.ogg diff --git a/kitty/.config/kitty/theme.conf b/kitty/.config/kitty/theme.conf new file mode 100644 index 0000000..4c2e467 --- /dev/null +++ b/kitty/.config/kitty/theme.conf @@ -0,0 +1,65 @@ +# The basic colors +foreground #8affff +background #003636 +selection_foreground #FFFFFF +selection_background #395e5e + +# Cursor colors +cursor #FFC600 +cursor_text_color #1C1C1C + +# URL underline color when hovering with mouse +url_color #8affff + +# Kitty window border colors +active_border_color #8affff +inactive_border_color #477576 +bell_border_color #F2ED7F + +# Tab bar colors +active_tab_foreground #FFFFFF +active_tab_background #008181 +inactive_tab_background #065959 +inactive_tab_foreground #FFFFFF + +# Colors for marks (marked text in the terminal) +mark1_foreground #FFC600 +mark1_background #3AD900 +mark2_foreground #967EFB +mark2_background #00AAFF +mark3_foreground #FF628C +mark3_background #FF9A00 + +# The 16 terminal colors + +# black +color0 #1C1C1C +color8 #9E9E9E + +# red +color1 #ff373d +color9 #700009 + +# green +color2 #1fff66 +color10 #70ff00 + +# yellow +color3 #FFC600 +color11 #FF9A00 + +# cyan +color6 #80FCFF +color14 #8fbfdc + +# magenta +color5 #FF628C +color13 #ff00da + +# blue +color4 #0080FF +color12 #0056ac + +# white +color7 #FFFFFF +color15 #BCBCBC diff --git a/kitty/.config/kitty/themes/Cobalt2.conf b/kitty/.config/kitty/themes/Cobalt2.conf deleted file mode 100644 index 236ce42..0000000 --- a/kitty/.config/kitty/themes/Cobalt2.conf +++ /dev/null @@ -1,76 +0,0 @@ -## name: Cobalt2 -## author: Lalit Kumar(@laltimee) -## license: MIT -## upstream: https://github.com/lalitmee/kitty-cobalt2/blob/master/cobalt2.conf -## blurb: Don't stress your eyes now - -# The basic colors -foreground #FFFFFF -background #193549 -selection_foreground #FFFFFF -selection_background #185294 - -# Cursor colors -cursor #FFC600 -cursor_text_color #1C1C1C - -# URL underline color when hovering with mouse -url_color #00AAFF - -# Kitty window border colors -active_border_color #00AAFF -inactive_border_color #9E9E9E -bell_border_color #F2ED7F - -# OS Window titlebar colors -wayland_titlebar_color system -macos_titlebar_color system - -# Tab bar colors -active_tab_foreground #FFC600 -inactive_tab_background #185294 -inactive_tab_foreground #FFFFFF -active_tab_background #0050A4 -tab_bar_background #193549 - -# Colors for marks (marked text in the terminal) -mark1_foreground #FFC600 -mark1_background #3AD900 -mark2_foreground #967EFB -mark2_background #00AAFF -mark3_foreground #FF628C -mark3_background #FF9A00 - -# The 16 terminal #88FF88#88FF88colors - -# black -color0 #1C1C1C -color8 #9E9E9E - -# red -color1 #FF0000 -color9 #700009 - -# green -color2 #3AD900 -color10 #88FF88 - -# yellow -color3 #FFC600 -color11 #FF9A00 - -# cyan -color6 #80FCFF -color14 #8fbfdc - -# magenta -color5 #FF628C -color13 #EE80E1 - -# blue -color4 #00AAFF -color12 #0050A4 - -# white -color7 #FFFFFF -color15 #BCBCBC |
