Skip to content

Commit

Permalink
Replace known colors with theme variants
Browse files Browse the repository at this point in the history
  • Loading branch information
Stealthii committed Apr 14, 2024
1 parent a92e057 commit df57886
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/git-status.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,16 @@ fi
# Set the status indicator based on the sync mode
case "$SYNC_MODE" in
1)
REMOTE_STATUS="$RESET#[bg=#15161e,fg=#ff9e64,bold]▒ 󱓎"
REMOTE_STATUS="$RESET#[bg=#15161e,fg=${THEME[bred]},bold]▒ 󱓎"
;;
2)
REMOTE_STATUS="$RESET#[bg=#15161e,fg=#f7768e,bold]▒ 󰛃"
REMOTE_STATUS="$RESET#[bg=#15161e,fg=${THEME[red]},bold]▒ 󰛃"
;;
3)
REMOTE_STATUS="$RESET#[bg=#15161e,fg=#bb9af7,bold]▒ 󰛀"
REMOTE_STATUS="$RESET#[bg=#15161e,fg=${THEME[magenta]},bold]▒ 󰛀"
;;
*)
REMOTE_STATUS="$RESET#[fg=#73daca,bg=#15161e,bold]▒ "
REMOTE_STATUS="$RESET#[bg=#15161e,fg=${THEME[green]},bold]▒ "
;;
esac

Expand Down

0 comments on commit df57886

Please sign in to comment.