Skip to content

Commit 6f91fff

Browse files
fix(extras): kitty base16 correction on brights (color8) (#110)
* fix(kitty.conf): base16 correction on brights (color8) If color0 and color8 are the same, the zsh-autosuggestions are the same colour as the background making it difficult to read. I used the wezterm config as reference and found that the color8 used in this config was incorrect thus fixed. * fix(kitty.lua): base16 correction in the right location this time Edited kitty.lua so that it won't overwrite the .conf file.
1 parent 8550789 commit 6f91fff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

extras/kitty/cyberdream.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cursor #ffffff
55
cursor_text_color #16181a
66
selection_background #3c4048
77
color0 #16181a
8-
color8 #16181a
8+
color8 #3c4048
99
color1 #ff6e5e
1010
color9 #ff6e5e
1111
color2 #5eff6c

lua/cyberdream/extra/kitty.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cursor ${fg}
1515
cursor_text_color ${bg}
1616
selection_background ${bgHighlight}
1717
color0 ${bg}
18-
color8 ${bg}
18+
color8 ${bgHighlight}
1919
color1 ${red}
2020
color9 ${red}
2121
color2 ${green}

0 commit comments

Comments
 (0)