Skip to content

Commit

Permalink
feat(extras): add tab colors for kitty (#154)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
dmtrKovalenko authored Dec 25, 2024
1 parent 8db57c2 commit 5597042
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions extras/kitty/cyberdream.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ color14 #5ef1ff
color7 #ffffff
color15 #ffffff
selection_foreground #ffffff
active_tab_foreground #000
active_tab_background #ffbd5e
inactive_tab_foreground #ffffff
inactive_tab_background #16181a
4 changes: 4 additions & 0 deletions lua/cyberdream/extra/kitty.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ color14 ${cyan}
color7 ${fg}
color15 ${fg}
selection_foreground ${fg}
active_tab_foreground ${fg}
active_tab_background ${orange}
inactive_tab_foreground ${fg}
inactive_tab_background ${bg}
]==]

return util.parse_extra_template(template, t)
Expand Down

0 comments on commit 5597042

Please sign in to comment.