# # Default Tmux Theme # # This theme matches Tmux's default style as closely as possible. It functions # as a template for creating new themes, and as a way to reset a running Tmux # server's style to it's defaults. # Status update interval set -g status-interval 15 # Basic status bar colors set -g status-style bg=green,fg=black # Left side of status bar set -g status-left-style bg=green,fg=black set -g status-left-length 10 set -g status-left "[#S]" # Right side of status bar set -g status-right-style bg=green,fg=black set -g status-right-length 40 set -g status-right "\"#H\" %H:%M %d-%b-%y" # Window status set -g window-status-format "#I:#W#F" set -g window-status-current-format "#I:#W#F" # Current window status set -g window-status-current-style bg=green,fg=black # Window with activity status set -g window-status-activity-style bg=black,fg=green # Window separator set -g window-status-separator " " # Window status alignment set -g status-justify left # Pane border set -g pane-border-style bg=default,fg=white # Active pane border set -g pane-active-border-style bg=default,fg=green # Pane number indicator set -g display-panes-colour blue set -g display-panes-active-colour red # Clock mode set -g clock-mode-colour blue set -g clock-mode-style 24 # Message set -g message-style bg=yellow,fg=black # Command message set -g message-command-style bg=green,fg=black # Mode set -g mode-style bg=yellow,fg=black