Skip to content

Commit 5597042

Browse files
feat(extras): add tab colors for kitty (#154)
The proposed kitty themes missing the config for tabs which is really essential for kitty. All white config makes it look really weird for the high contrast themes, so I added the combination I think fits really well
1 parent 8db57c2 commit 5597042

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

extras/kitty/cyberdream.conf

+4
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,7 @@ color14 #5ef1ff
2121
color7 #ffffff
2222
color15 #ffffff
2323
selection_foreground #ffffff
24+
active_tab_foreground #000
25+
active_tab_background #ffbd5e
26+
inactive_tab_foreground #ffffff
27+
inactive_tab_background #16181a

lua/cyberdream/extra/kitty.lua

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ color14 ${cyan}
3131
color7 ${fg}
3232
color15 ${fg}
3333
selection_foreground ${fg}
34+
active_tab_foreground ${fg}
35+
active_tab_background ${orange}
36+
inactive_tab_foreground ${fg}
37+
inactive_tab_background ${bg}
3438
]==]
3539

3640
return util.parse_extra_template(template, t)

0 commit comments

Comments
 (0)