From b42371a07906de377a4821fec9eb9745a52661a9 Mon Sep 17 00:00:00 2001 From: nirenjan Date: Fri, 14 Jun 2013 10:08:00 -0700 Subject: [PATCH] Adjust status bar colors in tmux With Terminal.app, the background color was getting set to base02 instead of base03, therefore, I had to use base03 (brightblack) to distinguish the tmux status bar from the rest of the screen. It would be a problem with vim (not so much really, since I could figure out where the tmux status bar was based on the vim status line). However, since iTerm2 is a better terminal emulator, it correctly displays the background color as base03, so in order to distinguish the status bar, I changed the color to base02 (black) instead. --- tmux.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tmux.conf b/tmux.conf index cc90e1c..7331ca7 100644 --- a/tmux.conf +++ b/tmux.conf @@ -46,9 +46,9 @@ set-option -g set-titles-string "(#H) [#S:#I.#P] #W" # Configure the tmux colours # Based on Solarized [altercation/solarized] on GitHub -TMUX_STATUS_BG=brightblack +TMUX_STATUS_BG=black TMUX_STATUS_FG=white -TMUX_MESSAGE_BG=brightblack +TMUX_MESSAGE_BG=black TMUX_MESSAGE_FG=brightred # Status bar