From 49a6985f353b0834a760318bfe851b6d0397d02d Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Sun, 1 May 2022 11:51:11 +0200 Subject: [PATCH] tmux: Tweak theme by using *bright*yellow Change all styles that used yellow to brightyellow and use 'default' instead of black as background where appropriate to not mess up a transparent terminal background. --- .config/tmux/tmux.conf | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index a72d7e4..025900c 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -98,15 +98,19 @@ set -g @resurrect-strategy-vim 'session' set -g @resurrect-strategy-nvim 'session' ## Theming (inspired by https://github.com/Who23/dots/blob/21976e76644d8d9261ebdcf61733d2181a1612eb/tmux.conf) -set -g status-bg black -set -g status-fg white +set -g status-style bg=default,fg=white +set -g message-command-style bg=default,fg=brightyellow +set -g message-style bg=brightyellow,fg=black +set -g mode-style bg=brightyellow,fg=black +set -g pane-border-style bg=default,fg=brightblack +set -g pane-active-border-style bg=default,fg=brightyellow -# set -g status-right "Continuum status: #{continuum_status}" +# Display prefix when pressed set -g @prefix_highlight_fg 'black' -set -g @prefix_highlight_bg 'yellow' +set -g @prefix_highlight_bg 'brightyellow' set -g @prefix_highlight_output_prefix ' ' set -g @prefix_highlight_output_suffix ' ' -set -g status-right "#{prefix_highlight}" +set -g status-right "#{prefix_highlight}" set -g status-left "#{prefix_highlight}" set -g status-justify centre