tmux-colorscheme.conf 1.8 KB

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