From f6c627bd532a1cb475259f6385c7ae4fa280f1ba Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Tue, 27 Jun 2023 18:20:38 +0200 Subject: [PATCH] tmux: Use hex values for colors Taken from my st fork (Originally the tango theme I believe). --- .config/tmux/tmux.conf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index ce4ebd2..c0ca623 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -244,12 +244,12 @@ bind d { } ## Theming -set -g @accent_color 'brightyellow' -set -g @ui_color 'brightblack' -set -g @sync_color 'brightred' -set -g @text_fg 'black' +set -g @accent_color '#fce94f' # brightyellow +set -g @ui_color '#757773' # brightblack +set -g @sync_color '#ef2929' # brightred +set -g @text_fg '#5e6466' # black -set -g status-style bg=default,fg=white +set -g status-style bg=default,fg='#d3d7cf' # white set -g message-command-style 'bg=default,fg=#{@accent_color}' set -g message-style 'bg=#{@accent_color},fg=#{@text_fg}' set -g mode-style 'bg=#{@accent_color},fg=#{@text_fg}'