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
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
8 changed files with 129 additions and 13 deletions

View File

@ -3,10 +3,10 @@
minus-non-emph-style = syntax "#dfccd4" minus-non-emph-style = syntax "#dfccd4"
minus-emph-style = syntax "#672d33" minus-emph-style = syntax "#672d33"
minus-empty-line-marker-style = syntax "#dfccd4" minus-empty-line-marker-style = syntax "#dfccd4"
line-numbers-minus-style = "#c25d64" line-numbers-minus-style = "#b2555b"
plus-style = syntax "#aecde6" plus-style = syntax "#aecde6"
plus-non-emph-style = syntax "#aecde6" plus-non-emph-style = syntax "#aecde6"
plus-emph-style = syntax "#28505c" plus-emph-style = syntax "#28505c"
plus-empty-line-marker-style = syntax "#aecde6" plus-empty-line-marker-style = syntax "#aecde6"
line-numbers-plus-style = "#399a96" line-numbers-plus-style = "#266d6a"
line-numbers-zero-style = "#a8aecb" line-numbers-zero-style = "#a8aecb"

View File

@ -744,7 +744,7 @@
<key>settings</key> <key>settings</key>
<dict> <dict>
<key>foreground</key> <key>foreground</key>
<string>#2c6c75</string> <string>#4097a3</string>
</dict> </dict>
</dict> </dict>
<dict> <dict>
@ -755,7 +755,7 @@
<key>settings</key> <key>settings</key>
<dict> <dict>
<key>foreground</key> <key>foreground</key>
<string>#914c54</string> <string>#c47981</string>
</dict> </dict>
</dict> </dict>
<dict> <dict>
@ -766,7 +766,7 @@
<key>settings</key> <key>settings</key>
<dict> <dict>
<key>foreground</key> <key>foreground</key>
<string>#6183b9</string> <string>#506d9b</string>
</dict> </dict>
</dict> </dict>
<dict> <dict>

View File

@ -744,7 +744,7 @@
<key>settings</key> <key>settings</key>
<dict> <dict>
<key>foreground</key> <key>foreground</key>
<string>#2c6c75</string> <string>#4097a3</string>
</dict> </dict>
</dict> </dict>
<dict> <dict>
@ -755,7 +755,7 @@
<key>settings</key> <key>settings</key>
<dict> <dict>
<key>foreground</key> <key>foreground</key>
<string>#914c54</string> <string>#c47981</string>
</dict> </dict>
</dict> </dict>
<dict> <dict>
@ -766,7 +766,7 @@
<key>settings</key> <key>settings</key>
<dict> <dict>
<key>foreground</key> <key>foreground</key>
<string>#6183b9</string> <string>#506d9b</string>
</dict> </dict>
</dict> </dict>
<dict> <dict>

View File

@ -9,4 +9,27 @@ selection_fg = "#3760bf"
ansi = ["#e9e9ed", "#f52a65", "#587539", "#8c6c3e", "#2e7de9", "#9854f1", "#007197", "#6172b0"] ansi = ["#e9e9ed", "#f52a65", "#587539", "#8c6c3e", "#2e7de9", "#9854f1", "#007197", "#6172b0"]
brights = ["#a1a6c5", "#f52a65", "#587539", "#8c6c3e", "#2e7de9", "#9854f1", "#007197", "#3760bf"] 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"

View File

@ -9,4 +9,27 @@ selection_fg = "#c8d3f5"
ansi = ["#1b1d2b", "#ff757f", "#c3e88d", "#ffc777", "#82aaff", "#c099ff", "#86e1fc", "#828bb8"] ansi = ["#1b1d2b", "#ff757f", "#c3e88d", "#ffc777", "#82aaff", "#c099ff", "#86e1fc", "#828bb8"]
brights = ["#444a73", "#ff757f", "#c3e88d", "#ffc777", "#82aaff", "#c099ff", "#86e1fc", "#c8d3f5"] brights = ["#444a73", "#ff757f", "#c3e88d", "#ffc777", "#82aaff", "#c099ff", "#86e1fc", "#c8d3f5"]
[colors.tab_bar]
inactive_tab_edge = "#1e2030"
background = "#191b28"
[colors.tab_bar.active_tab]
fg_color = "#82aaff"
bg_color = "#222436"
[colors.tab_bar.inactive_tab]
bg_color = '#1e2030'
fg_color = "#545c7e"
[colors.tab_bar.inactive_tab_hover]
bg_color = "#1e2030"
fg_color = "#82aaff"
[colors.tab_bar.new_tab_hover]
fg_color = "#1e2030"
bg_color = "#82aaff"
[colors.tab_bar.new_tab]
fg_color = "#82aaff"
bg_color = "#191b28"

View File

@ -9,4 +9,27 @@ selection_fg = "#c0caf5"
ansi = ["#15161e", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#a9b1d6"] ansi = ["#15161e", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#a9b1d6"]
brights = ["#414868", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#c0caf5"] brights = ["#414868", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#c0caf5"]
[colors.tab_bar]
inactive_tab_edge = "#16161e"
background = "#191b28"
[colors.tab_bar.active_tab]
fg_color = "#7aa2f7"
bg_color = "#1a1b26"
[colors.tab_bar.inactive_tab]
bg_color = "#16161e"
fg_color = "#545c7e"
[colors.tab_bar.inactive_tab_hover]
bg_color = "#16161e"
fg_color = "#7aa2f7"
[colors.tab_bar.new_tab_hover]
fg_color = "#16161e"
bg_color = "#7aa2f7"
[colors.tab_bar.new_tab]
fg_color = "#7aa2f7"
bg_color = "#191b28"

View File

@ -9,4 +9,27 @@ selection_fg = "#c0caf5"
ansi = ["#1d202f", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#a9b1d6"] ansi = ["#1d202f", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#a9b1d6"]
brights = ["#414868", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#c0caf5"] brights = ["#414868", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#c0caf5"]
[colors.tab_bar]
inactive_tab_edge = "#1f2335"
background = "#191b28"
[colors.tab_bar.active_tab]
fg_color = "#7aa2f7"
bg_color = "#24283b"
[colors.tab_bar.inactive_tab]
bg_color = "#1f2335"
fg_color = "#545c7e"
[colors.tab_bar.inactive_tab_hover]
bg_color = "#1f2335"
fg_color = "#7aa2f7"
[colors.tab_bar.new_tab_hover]
fg_color = "#1f2335"
bg_color = "#7aa2f7"
[colors.tab_bar.new_tab]
fg_color = "#7aa2f7"
bg_color = "#191b28"

View File

@ -17,7 +17,31 @@ selection_fg = "${fg}"
ansi = ["${black}", "${red}", "${green}", "${yellow}", "${blue}", "${magenta}", "${cyan}", "${fg_dark}"] ansi = ["${black}", "${red}", "${green}", "${yellow}", "${blue}", "${magenta}", "${cyan}", "${fg_dark}"]
brights = ["${terminal_black}", "${red}", "${green}", "${yellow}", "${blue}", "${magenta}", "${cyan}", "${fg}"] brights = ["${terminal_black}", "${red}", "${green}", "${yellow}", "${blue}", "${magenta}", "${cyan}", "${fg}"]
]],
[colors.tab_bar]
inactive_tab_edge = "${bg_dark}"
background = "#191b28"
[colors.tab_bar.active_tab]
fg_color = "${blue}"
bg_color = "${bg}"
[colors.tab_bar.inactive_tab]
bg_color = "${bg_dark}"
fg_color = "${dark3}"
[colors.tab_bar.inactive_tab_hover]
bg_color = "${bg_dark}"
fg_color = "${blue}"
[colors.tab_bar.new_tab_hover]
fg_color = "${bg_dark}"
bg_color = "${blue}"
[colors.tab_bar.new_tab]
fg_color = "${blue}"
bg_color = "#191b28"
]],
colors colors
) )
return kitty return kitty