Push base16 theme changes

- Switch to a base16 builder wrapper I wrote myself
- Switch small details on a bunch of templates
- Switch to a QVP based color scheme I wrote myself

This should form the most rational default for colors going forward.
This commit is contained in:
Trysdyn Black 2021-04-04 00:09:46 -07:00
parent a52f9ead7b
commit ed5e5150d6
8 changed files with 180 additions and 226 deletions

View file

@ -10,35 +10,33 @@ set-option -ga terminal-overrides ",xterm-256color:Tc"
# %%base16_template: tmux##default %%
# COLOUR (base16)
# default statusbar colors
set-option -g status-style "fg=#918f88,bg=#242422"
set-option -g status-style "fg=#b0b0b0,bg=#202020"
# default window title colors
set-window-option -g window-status-style "fg=#918f88,bg=default"
set-window-option -g window-status-style "fg=#b0b0b0,bg=default"
# active window title colors
set-window-option -g window-status-current-style "fg=#ffffb6,bg=default"
set-window-option -g window-status-current-style "fg=#f7c61d,bg=default"
# pane border
set-option -g pane-border-style "fg=#242422"
set-option -g pane-active-border-style "fg=#401040"
set-option -g pane-border-style "fg=#202020"
set-option -g pane-active-border-style "fg=#311647"
# message text
set-option -g message-style "fg=#b5b3aa,bg=#242422"
set-option -g message-style "fg=#f0f0f0,bg=#202020"
# pane number display
set-option -g display-panes-active-colour "#a8ff60"
set-option -g display-panes-colour "#ffffb6"
set-option -g display-panes-active-colour "#8dc73f"
set-option -g display-panes-colour "#f7c61d"
# clock
set-window-option -g clock-mode-colour "#a8ff60"
set-window-option -g clock-mode-colour "#8dc73f"
# copy mode highligh
set-window-option -g mode-style "fg=#918f88,bg=#401040"
set-window-option -g mode-style "fg=#b0b0b0,bg=#311647"
# bell
set-window-option -g window-status-bell-style "fg=#242422,bg=#ff6c60"
set-window-option -g window-status-bell-style "fg=#202020,bg=#ed008c"
# %%base16_template_end%%