feat(wezterm): added tab_bar colors. only works with the retro tab bar. Fixes #304

This commit is contained in:
Folke Lemaitre
2023-02-07 21:30:08 +01:00
parent affb21a81e
commit 56945bd0d3
8 changed files with 129 additions and 13 deletions

View File

@@ -9,4 +9,27 @@ selection_fg = "#3760bf"
ansi = ["#e9e9ed", "#f52a65", "#587539", "#8c6c3e", "#2e7de9", "#9854f1", "#007197", "#6172b0"]
brights = ["#a1a6c5", "#f52a65", "#587539", "#8c6c3e", "#2e7de9", "#9854f1", "#007197", "#3760bf"]
[colors.tab_bar]
inactive_tab_edge = "#e9e9ec"
background = "#191b28"
[colors.tab_bar.active_tab]
fg_color = "#2e7de9"
bg_color = "#e1e2e7"
[colors.tab_bar.inactive_tab]
bg_color = "#e9e9ec"
fg_color = "#8990b3"
[colors.tab_bar.inactive_tab_hover]
bg_color = "#e9e9ec"
fg_color = "#2e7de9"
[colors.tab_bar.new_tab_hover]
fg_color = "#e9e9ec"
bg_color = "#2e7de9"
[colors.tab_bar.new_tab]
fg_color = "#2e7de9"
bg_color = "#191b28"