From 7e62834e25dc114ed249655c4f673fe67617a4c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= <60845989+jalil-salame@users.noreply.github.com> Date: Thu, 8 Feb 2024 00:24:10 +0100 Subject: [PATCH] wezterm: flip active and inactive tab colors (#246) This makes it easier to tell which tab is the active tab. --- modules/wezterm/hm.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/wezterm/hm.nix b/modules/wezterm/hm.nix index e3f8a11c..afc24828 100644 --- a/modules/wezterm/hm.nix +++ b/modules/wezterm/hm.nix @@ -24,11 +24,11 @@ in { background = base01; inactive_tab_edge = base01; active_tab = { - bg_color = base03; + bg_color = base00; fg_color = base05; }; inactive_tab = { - bg_color = base00; + bg_color = base03; fg_color = base05; }; inactive_tab_hover = { @@ -36,7 +36,7 @@ in { fg_color = base00; }; new_tab = { - bg_color = base00; + bg_color = base03; fg_color = base05; }; new_tab_hover = {