39 lines
2.0 KiB
Plaintext
39 lines
2.0 KiB
Plaintext
# tmux theme
|
|
|
|
###################
|
|
# Color
|
|
###################
|
|
#+ accent = #56c9e4
|
|
#+ secondary = #011f2a
|
|
#+ COLOR_TERTIARY = #0f63bd
|
|
|
|
set -g default-terminal "screen-256color"
|
|
if 'infocmp -x tmux-256color > /dev/null 2>&1' 'set -g default-terminal "tmux-256color"'
|
|
|
|
#set -g @prefix_highlight_fg black
|
|
#set -g @prefix_highlight_bg brightcyan
|
|
|
|
|
|
#+--------- Panes
|
|
set -g pane-border-style fg='#${COLOR_SECONDARY}',bg=default
|
|
set -g pane-active-border-style fg='#${COLOR_ACCENT}',bg=default
|
|
#set -g pane-border-style bg=default,fg=brightblack
|
|
#set -g pane-active-border-style bg=default,fg=blue
|
|
|
|
set -g window-style fg=#848a86,bg=default
|
|
set -g window-active-style 'fg=#EEEEEE,bg=default'
|
|
|
|
|
|
#+----- Bar Style
|
|
set -g status-left "#{?client_prefix,#[fg=black#,bg=#${COLOR_TERTIARY}#,bold],#[fg=black#,bg=#${COLOR_TERTIARY}#,bold]} #S #{?client_prefix,#[fg=#${COLOR_TERTIARY}#,bg=default#,nobold#,noitalics#,nounderscore],#[fg=#${COLOR_TERTIARY}#,bg=default#,nobold#,noitalics#,nounderscore]}"
|
|
set -g status-right "#{prefix_highlight}#[fg=#${COLOR_SECONDARY},bg=black,nobold,noitalics,nounderscore]#[fg=white,bg=#${COLOR_SECONDARY}] %Y-%m-%d #[fg=white,bg=#${COLOR_SECONDARY},nobold,noitalics,nounderscore]#[fg=white,bg=#${COLOR_SECONDARY}] %H:%M #[fg=#${COLOR_ACCENT},bg=#${COLOR_SECONDARY},nobold,noitalics,nounderscore]#[fg=black,bg=#${COLOR_ACCENT},bold] #H "
|
|
|
|
#+----- Windows
|
|
set -g window-status-format "#[fg=black,bg=#${COLOR_SECONDARY},nobold,noitalics,nounderscore] #[fg=white,bg=#${COLOR_SECONDARY}]#I #[fg=white,bg=#${COLOR_SECONDARY},nobold,noitalics,nounderscore] #[fg=white,bg=#${COLOR_SECONDARY}]#W #F #[fg=#${COLOR_SECONDARY},bg=default,nobold,noitalics,nounderscore]"
|
|
set -g window-status-current-format "#[fg=black,bg=#${COLOR_ACCENT},nobold] #[fg=black,bg=#${COLOR_ACCENT}]#I #[fg=black,bg=#${COLOR_ACCENT},nobold,noitalics,nounderscore] #[fg=black,bg=#${COLOR_ACCENT}]#W #F #[fg=#${COLOR_ACCENT},bg=default,nobold,noitalics,nounderscore]"
|
|
set -g window-status-separator ""
|
|
|
|
#+----- Messages
|
|
set -g message-style bg='#${COLOR_ACCENT}',fg=black
|
|
|