diff --git a/zsh/p10k.zsh b/zsh/p10k.zsh index cbba7d8..dad92ad 100644 --- a/zsh/p10k.zsh +++ b/zsh/p10k.zsh @@ -214,7 +214,7 @@ ##################################[ dir: current directory ]################################## # Current directory background color. - typeset -g POWERLEVEL9K_DIR_BACKGROUND=4 + typeset -g POWERLEVEL9K_DIR_BACKGROUND=33 # Default current directory foreground color. typeset -g POWERLEVEL9K_DIR_FOREGROUND=254 # If directory is too long, shorten some of its segments to the shortest possible unique @@ -353,10 +353,10 @@ #####################################[ vcs: git status ]###################################### # Version control background colors. - typeset -g POWERLEVEL9K_VCS_CLEAN_BACKGROUND=2 - typeset -g POWERLEVEL9K_VCS_MODIFIED_BACKGROUND=3 - typeset -g POWERLEVEL9K_VCS_UNTRACKED_BACKGROUND=2 - typeset -g POWERLEVEL9K_VCS_CONFLICTED_BACKGROUND=3 + typeset -g POWERLEVEL9K_VCS_CLEAN_BACKGROUND=34 + typeset -g POWERLEVEL9K_VCS_MODIFIED_BACKGROUND=136 + typeset -g POWERLEVEL9K_VCS_UNTRACKED_BACKGROUND=34 + typeset -g POWERLEVEL9K_VCS_CONFLICTED_BACKGROUND=136 typeset -g POWERLEVEL9K_VCS_LOADING_BACKGROUND=8 # Branch icon. Set this parameter to '\UE0A0 ' for the popular Powerline branch icon. @@ -386,9 +386,9 @@ # Styling for different parts of Git status. local meta='%7F' # white foreground - local clean='%0F' # black foreground - local modified='%0F' # black foreground - local untracked='%0F' # black foreground + local clean='%236F' # black foreground + local modified='%236F' # black foreground + local untracked='%236F' # black foreground local conflicted='%1F' # red foreground local res