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