Skip to content

Commit

Permalink
feat(wezterm): added tab_bar colors. only works with the retro tab bar.
Browse files Browse the repository at this point in the history
Fixes #304
  • Loading branch information
folke committed Feb 7, 2023
1 parent affb21a commit 56945bd
Show file tree
Hide file tree
Showing 8 changed files with 129 additions and 13 deletions.
4 changes: 2 additions & 2 deletions extras/delta/tokyonight_day.gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
minus-non-emph-style = syntax "#dfccd4"
minus-emph-style = syntax "#672d33"
minus-empty-line-marker-style = syntax "#dfccd4"
line-numbers-minus-style = "#c25d64"
line-numbers-minus-style = "#b2555b"
plus-style = syntax "#aecde6"
plus-non-emph-style = syntax "#aecde6"
plus-emph-style = syntax "#28505c"
plus-empty-line-marker-style = syntax "#aecde6"
line-numbers-plus-style = "#399a96"
line-numbers-plus-style = "#266d6a"
line-numbers-zero-style = "#a8aecb"
6 changes: 3 additions & 3 deletions extras/sublime/tokyonight_night.tmTheme
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@
<key>settings</key>
<dict>
<key>foreground</key>
<string>#2c6c75</string>
<string>#4097a3</string>
</dict>
</dict>
<dict>
Expand All @@ -755,7 +755,7 @@
<key>settings</key>
<dict>
<key>foreground</key>
<string>#914c54</string>
<string>#c47981</string>
</dict>
</dict>
<dict>
Expand All @@ -766,7 +766,7 @@
<key>settings</key>
<dict>
<key>foreground</key>
<string>#6183b9</string>
<string>#506d9b</string>
</dict>
</dict>
<dict>
Expand Down
6 changes: 3 additions & 3 deletions extras/sublime/tokyonight_storm.tmTheme
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@
<key>settings</key>
<dict>
<key>foreground</key>
<string>#2c6c75</string>
<string>#4097a3</string>
</dict>
</dict>
<dict>
Expand All @@ -755,7 +755,7 @@
<key>settings</key>
<dict>
<key>foreground</key>
<string>#914c54</string>
<string>#c47981</string>
</dict>
</dict>
<dict>
Expand All @@ -766,7 +766,7 @@
<key>settings</key>
<dict>
<key>foreground</key>
<string>#6183b9</string>
<string>#506d9b</string>
</dict>
</dict>
<dict>
Expand Down
25 changes: 24 additions & 1 deletion extras/wezterm/tokyonight_day.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
25 changes: 24 additions & 1 deletion extras/wezterm/tokyonight_moon.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,27 @@ selection_fg = "#c8d3f5"

ansi = ["#1b1d2b", "#ff757f", "#c3e88d", "#ffc777", "#82aaff", "#c099ff", "#86e1fc", "#828bb8"]
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"
25 changes: 24 additions & 1 deletion extras/wezterm/tokyonight_night.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,27 @@ selection_fg = "#c0caf5"

ansi = ["#15161e", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#a9b1d6"]
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"
25 changes: 24 additions & 1 deletion extras/wezterm/tokyonight_storm.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,27 @@ selection_fg = "#c0caf5"

ansi = ["#1d202f", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#a9b1d6"]
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"
26 changes: 25 additions & 1 deletion lua/tokyonight/extra/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,31 @@ selection_fg = "${fg}"
ansi = ["${black}", "${red}", "${green}", "${yellow}", "${blue}", "${magenta}", "${cyan}", "${fg_dark}"]
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
)
return kitty
Expand Down

0 comments on commit 56945bd

Please sign in to comment.