From 5d5a2b072c1034a1ba3044471fb603606a9738bb Mon Sep 17 00:00:00 2001 From: Dmitry Fedotov Date: Mon, 11 Jul 2022 02:34:39 +0300 Subject: [PATCH] Change tmux theme. --- tmux/theme.sh | 49 ++++++++++++++++++++++++++----------------------- 1 file changed, 26 insertions(+), 23 deletions(-) diff --git a/tmux/theme.sh b/tmux/theme.sh index 6a4e26d..7d1d776 100644 --- a/tmux/theme.sh +++ b/tmux/theme.sh @@ -1,52 +1,55 @@ # Base16 Styling Guidelines: -base00=default # - Default +base00='#21272d' # - Default base01='#151515' # - Lighter Background (Used for status bars) base02='#202020' # - Selection Background base03='#909090' # - Comments, Invisibles, Line Highlighting base04='#505050' # - Dark Foreground (Used for status bars) -base05='#D0D0D0' # - Default Foreground, Caret, Delimiters, Operators -base06='#E0E0E0' # - Light Foreground (Not often used) -base07='#F5F5F5' # - Light Background (Not often used) -base08='#AC4142' # - Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted -base09='#D28445' # - Integers, Boolean, Constants, XML Attributes, Markup Link Url -base0A='#F4BF75' # - Classes, Markup Bold, Search Text Background -base0B='#90A959' # - Strings, Inherited Class, Markup Code, Diff Inserted -base0C='#B38300' # - Support, Regular Expressions, Escape Characters, Markup Quotes -base0D='#6A9FB5' # - Functions, Methods, Attribute IDs, Headings -base0E='#AA759F' # - Keywords, Storage, Selector, Markup Italic, Diff Changed -base0F='#8F5536' # - Deprecated, Opening/Closing Embedded Language Tags, e.g. +base05='#d0d0d0' # - Default Foreground, Caret, Delimiters, Operators +base06='#e2e1d9' # - Light Foreground (Not often used) +base07='#f5f5f5' # - Light Background (Not often used) +base08='#ac4142' # - Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted +base09='#d28445' # - Integers, Boolean, Constants, XML Attributes, Markup Link Url +base0A='#f4bf75' # - Classes, Markup Bold, Search Text Background +base0B='#90a959' # - Strings, Inherited Class, Markup Code, Diff Inserted +base0C='#2b66c5' # - Support, Regular Expressions, Escape Characters, Markup Quotes +base0D='#6a9fb5' # - Functions, Methods, Attribute IDs, Headings +base0E='#3781fa' # - Keywords, Storage, Selector, Markup Italic, Diff Changed +base0F='#8f5536' # - Deprecated, Opening/Closing Embedded Language Tags, e.g. set -g status-left-length 32 set -g status-right-length 150 set -g status-interval 5 # default statusbar colors -set-option -g status-style fg=$base02,bg=$base00,default +set-option -g status-style fg=$base03,bg=$base00 set-window-option -g window-status-style fg=$base03,bg=$base00 -set-window-option -g window-status-format " #I #W" +set-window-option -g window-status-format " [#I] #W " # active window title colors -set-window-option -g window-status-current-style fg=$base0C,bg=$base00 -set-window-option -g window-status-current-format " #[bold]#W" +set-window-option -g window-status-current-style fg=$base06,bg=$base0C +set-window-option -g window-status-current-format " #[bold][#I] #W " # pane border colors -set-window-option -g pane-active-border-style fg=$base0C -set-window-option -g pane-border-style fg=$base03 +set-window-option -g pane-active-border-style fg=$base00 +set-window-option -g pane-border-style fg=$base00 + +# copy mode highlighting +set-window-option -g mode-style fg=$base06,bg=$base0C # message text -set-option -g message-style bg=$base00,fg=$base0C +set-option -g message-style bg=$base00,fg=$base06 # pane number display set-option -g display-panes-active-colour $base0C -set-option -g display-panes-colour $base01 +set-option -g display-panes-colour $base03 # clock set-window-option -g clock-mode-colour $base0C -tm_session_name="#[default,bg=$base00,fg=$base0E] #S " +set-option -g status-right '' + +tm_session_name="#[default,bg=$base00,fg=$base06] #S " set -g status-left "$tm_session_name" -tm_date="#[default,bg=$base00,fg=$base0C] %R" -tm_host="#[fg=$base0E,bg=$base00] #h " -- 2.39.5