tmux-colorscheme.conf 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ### TMUX COLORSCHEME ###
  2. # change window screen colors
  3. set-option -wg mode-style bg="#FE8019",fg="#3C3836"
  4. # default statusbar colors (terminal bg should be #282828)
  5. set-option -g status-style bg=terminal,fg="#A89984"
  6. # default window title colors
  7. set-option -wg window-status-style bg="#3C3836",fg="#7C6F64"
  8. # colors for windows with activity
  9. set-option -wg window-status-activity-style bg="#3C3836",fg="#A89984"
  10. # colors for windows with bells
  11. set-option -wg window-status-bell-style bg="#3C3836",fg="#FE8019"
  12. # active window title colors
  13. set-option -wg window-status-current-style bg="#FE8019",fg="#3C3836"
  14. # pane border
  15. set-option -g pane-active-border-style fg="#FE8019"
  16. set-option -g pane-border-style fg="#3C3836"
  17. # message info
  18. set-option -g message-style bg="#FE8019",fg="#3C3836"
  19. # writing commands inactive
  20. set-option -g message-command-style bg="#A89984",fg="#3C3836"
  21. # pane number display
  22. set-option -g display-panes-active-colour "#FE8019"
  23. set-option -g display-panes-colour "#3C3836"
  24. # clock
  25. set-option -wg clock-mode-colour "#FE8019"
  26. # window separators
  27. set-option -wg window-status-separator ""
  28. # monitor window changes
  29. set-option -wg monitor-activity on
  30. set-option -wg monitor-bell on
  31. # statusbar formatting
  32. # "#fe8019" MUST be in lowercase here (conflicts with statusline alias otherwise)
  33. set-option -g status-left "#[fg=#3C3836, bg=#A89984]#{?client_prefix,#[bg=#fe8019] #{session_name} #[bg=#A89984], #{session_name} }"
  34. set-option -g status-right "#[fg=#7C6F64, bg=#3C3836] %Y-%m-%d %H:%M:%S #[fg=#3C3836, bg=#A89984]#{?client_prefix,#[bg=#fe8019] #{host_short} #[bg=#A89984], #{host_short} }"
  35. set-option -wg window-status-current-format " #{window_index} #{window_name} "
  36. set-option -wg window-status-format " #{window_index} #{window_name} "