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:
@@ -27,9 +27,9 @@ if [[ -n "$full" ]]; then
|
||||
elif [[ -n "$charging" ]]; then
|
||||
echo "#[fg=#808080] ${pct}%#[default]"
|
||||
elif (( pct <= 10 )); then
|
||||
echo "#[fg=#F40404,bold] ${pct}%#[default]"
|
||||
echo "#[fg=#F88C14,bold] ${pct}%#[default]"
|
||||
elif (( pct <= 20 )); then
|
||||
echo "#[fg=#f88c14,bold] ${pct}%#[default]"
|
||||
echo "#[fg=#F88C14,bold] ${pct}%#[default]"
|
||||
elif (( pct <= 40 )); then
|
||||
echo "#[fg=#808080] ${pct}%#[default]"
|
||||
elif (( pct <= 60 )); then
|
||||
|
||||
Reference in New Issue
Block a user