Replace red with amber, unify palette, add fetch/pull aliases

- Add git aliases: f (fetch), p (pull) and shell aliases: gf, gp
- Replace all #F40404 (red) with #F88C14 (amber) across prompt, gitconfig,
  vim, bat theme, and tmux scripts for colourblind-friendly palette
- Standardise hex case to uppercase throughout
- Unify #728cb8 → #7290B8 (fix blue inconsistency)
- Replace unique #8787AF with palette #7290B8 in gitconfig
- Remove unused red colour definition from prompt.zsh
- Update dark diff backgrounds from red-tinted to amber-tinted

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-25 17:38:47 +00:00
parent e7a2b3c10e
commit 8138d44c73
9 changed files with 54 additions and 53 deletions

View File

@@ -61,28 +61,28 @@ bind r source-file ~/.tmux.conf \; display "Config reloaded"
# Status bar
set -g status-position bottom
set -g status-interval 1
set -g status-style "fg=#728cb8,bg=default"
set -g status-left "#{?client_prefix,#[fg=#2cb494]● ,#[fg=#3c3c3c]● }"
set -g status-right "#(~/.tmux/network.sh) #[fg=#3c3c3c] #(~/.tmux/battery.sh) #[fg=#3c3c3c] #[fg=#808080]%a %d %b #[fg=#2cb494,bg=#1a1a1a] %H:%M #[default] "
set -g status-style "fg=#7290B8,bg=default"
set -g status-left "#{?client_prefix,#[fg=#2CB494]● ,#[fg=#3C3C3C]● }"
set -g status-right "#(~/.tmux/network.sh) #[fg=#3C3C3C] #(~/.tmux/battery.sh) #[fg=#3C3C3C] #[fg=#808080]%a %d %b #[fg=#2CB494,bg=#1A1A1A] %H:%M #[default] "
set -g status-right-length 80
set -g window-status-format "#{?window_last_flag, #[fg=#1a7a64]#I#[fg=default] #W , #I #W }"
set -g window-status-current-format " #[fg=#085040]#I#[fg=#0a0a0a] #W "
set -g window-status-format "#{?window_last_flag, #[fg=#1A7A64]#I#[fg=default] #W , #I #W }"
set -g window-status-current-format " #[fg=#085040]#I#[fg=#0A0A0A] #W "
set -g window-status-separator " "
set -g window-status-style "fg=#808080,bg=#1a1a1a"
set -g window-status-current-style "fg=#0a0a0a,bg=#2cb494,bold"
set -g window-status-bell-style "fg=#1a1a1a,bg=#f88c14,bold"
set -g window-status-style "fg=#808080,bg=#1A1A1A"
set -g window-status-current-style "fg=#0A0A0A,bg=#2CB494,bold"
set -g window-status-bell-style "fg=#1A1A1A,bg=#F88C14,bold"
set -g monitor-bell on
set -g visual-bell off
set -g pane-border-style "fg=#3c3c3c"
set -g pane-active-border-style "fg=#2cb494"
set -g message-style "fg=#2cb494,bg=default"
set -g message-command-style "fg=#f88c14,bg=default"
set -g mode-style "fg=#1a1a1a,bg=#f88c14,bold"
set -g pane-border-style "fg=#3C3C3C"
set -g pane-active-border-style "fg=#2CB494"
set -g message-style "fg=#2CB494,bg=default"
set -g message-command-style "fg=#F88C14,bg=default"
set -g mode-style "fg=#1A1A1A,bg=#F88C14,bold"
set -g display-panes-colour "#808080"
set -g display-panes-active-colour "#2cb494"
set -g display-panes-active-colour "#2CB494"
# Clock
set -g clock-mode-colour "#2cb494"
set -g clock-mode-colour "#2CB494"
set -g automatic-rename on
set -g allow-rename off
set -g automatic-rename-format '#(~/.tmux/tab-name.sh "#{pane_current_command}" "#{b:pane_current_path}")'