From e2e612fc9cfd292a380aacd4f62cb9cc3f010353 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Mon, 19 Feb 2024 19:22:36 +0100 Subject: [PATCH] use terminal colors in tmux --- dot_config/tmux/tmux.conf.tmpl | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/dot_config/tmux/tmux.conf.tmpl b/dot_config/tmux/tmux.conf.tmpl index af33e87..f623af2 100644 --- a/dot_config/tmux/tmux.conf.tmpl +++ b/dot_config/tmux/tmux.conf.tmpl @@ -59,31 +59,34 @@ bind u capture-pane \;\ # DESIGN # clock mode -setw -g clock-mode-colour colour0 +setw -g clock-mode-colour white # copy mode -setw -g mode-style 'fg=colour0 bg=colour1 bold' +setw -g mode-style 'fg=white bg=red bold' # pane borders -set -g pane-border-style 'fg=colour1' -set -g pane-active-border-style 'fg=colour3' +set -g pane-border-style 'fg=red' +set -g pane-active-border-style 'fg=yellow' # statusbar set -g status-position bottom set -g status-justify left -set -g status-style 'fg=#3670a5' -set -g status-left '' -set -g status-right '%Y-%m-%d %H:%M ' +set -g status-style 'fg=blue' +set -g status-left ' ' +set -g status-left-style 'fg=blue dim' +set -g status-right '%Y-%m-%d %H:%M' set -g status-right-length 50 set -g status-left-length 10 -setw -g window-status-current-style 'fg=#071421 bg=#3670a5 bold' +setw -g window-status-current-style 'fg=default bg=blue bold' setw -g window-status-current-format ' #I #W #F ' -setw -g window-status-style 'fg=#3670a5 dim' -setw -g window-status-format ' #I #[fg=colour7]#W #[fg=#3670a5]#F ' +setw -g window-status-style 'fg=blue dim' +setw -g window-status-format ' #I #W #F ' -setw -g window-status-bell-style 'fg=colour2 bg=#ad6f1d bold' +setw -g window-status-bell-style 'fg=black bg=yellow bold' # messages -set -g message-style 'fg=colour2 bg=colour0 bold' +set -g message-style 'fg=black bg=white bold' +set -g window-style 'dim' +set -g window-active-style 'dim'