mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[kitty] change tab bar colors to match the neovim UI
This commit is contained in:
parent
5a45cf8a3a
commit
7e460fe374
3 changed files with 13 additions and 3 deletions
|
@ -16,6 +16,13 @@ print_color("selection_foreground", theme.selection_fg)
|
||||||
for index, color in enumerate(theme.ansi_colors[:16]):
|
for index, color in enumerate(theme.ansi_colors[:16]):
|
||||||
print_color("color" + str(index), color)
|
print_color("color" + str(index), color)
|
||||||
print_color("url_color", theme.link_color)
|
print_color("url_color", theme.link_color)
|
||||||
|
|
||||||
print_color("active_border_color", theme.ansi_colors[2])
|
print_color("active_border_color", theme.ansi_colors[2])
|
||||||
print_color("inactive_border_color", theme.ansi_colors[8])
|
print_color("inactive_border_color", theme.ansi_colors[8])
|
||||||
print_color("bell_border_color", theme.ansi_colors[1])
|
print_color("bell_border_color", theme.ansi_colors[1])
|
||||||
|
|
||||||
|
print_color("active_tab_foreground", theme.base16_colors[0x1])
|
||||||
|
print_color("active_tab_background", theme.base16_colors[0xB])
|
||||||
|
print_color("inactive_tab_foreground", theme.base16_colors[0x4])
|
||||||
|
print_color("inactive_tab_background", theme.base16_colors[0x1])
|
||||||
|
print_color("tab_bar_background", theme.base16_colors[0x1])
|
||||||
|
|
|
@ -24,3 +24,8 @@ url_color #6699cc
|
||||||
active_border_color #99cc99
|
active_border_color #99cc99
|
||||||
inactive_border_color #747369
|
inactive_border_color #747369
|
||||||
bell_border_color #f2777a
|
bell_border_color #f2777a
|
||||||
|
active_tab_foreground #393939
|
||||||
|
active_tab_background #99cc99
|
||||||
|
inactive_tab_foreground #a09f93
|
||||||
|
inactive_tab_background #393939
|
||||||
|
tab_bar_background #393939
|
||||||
|
|
|
@ -347,9 +347,7 @@ tab_bar_min_tabs 1
|
||||||
active_tab_font_style bold
|
active_tab_font_style bold
|
||||||
# inactive_tab_foreground #444
|
# inactive_tab_foreground #444
|
||||||
# inactive_tab_background #999
|
# inactive_tab_background #999
|
||||||
inactive_tab_font_style italic
|
inactive_tab_font_style none
|
||||||
|
|
||||||
tab_bar_background #999
|
|
||||||
|
|
||||||
#: Tab bar colors and styles
|
#: Tab bar colors and styles
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue