blob: 53c5548ecec70b4df8a409697739d4adf769621f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
local wezterm = require("wezterm")
local M = {
tab_bar_style = {
active_tab_left = wezterm.format({
{ Background = { Color = "#3c3836" } },
{ Foreground = { Color = "#ebdbb2" } },
}),
active_tab_right = wezterm.format({
{ Background = { Color = "#3c3836" } },
{ Foreground = { Color = "#ebdbb2" } },
}),
inactive_tab_left = wezterm.format({
{ Background = { Color = "#665c34" } },
{ Foreground = { Color = "#bdae93" } },
}),
inactive_tab_right = wezterm.format({
{ Background = { Color = "#665c34" } },
{ Foreground = { Color = "#bdae93" } },
}),
},
}
return M
|