summaryrefslogtreecommitdiff
path: root/themes/michelebologna.zsh-theme
diff options
context:
space:
mode:
authorZou Yang <zouyang08@gmail.com>2023-07-24 01:44:30 +0800
committerGitHub <noreply@github.com>2023-07-23 19:44:30 +0200
commitb9354c5e9c29bd2d5b53731847855d25381c157c (patch)
tree6215b3be351a36aeef7ac2e6740a360e57743dbb /themes/michelebologna.zsh-theme
parent7d5e12500a2ba0b575ffafcbb516568973528730 (diff)
downloadzsh-b9354c5e9c29bd2d5b53731847855d25381c157c.tar.gz
zsh-b9354c5e9c29bd2d5b53731847855d25381c157c.tar.bz2
zsh-b9354c5e9c29bd2d5b53731847855d25381c157c.zip
fix(michelebologna): use blue instead of white (#11810)
Diffstat (limited to 'themes/michelebologna.zsh-theme')
-rw-r--r--themes/michelebologna.zsh-theme11
1 files changed, 5 insertions, 6 deletions
diff --git a/themes/michelebologna.zsh-theme b/themes/michelebologna.zsh-theme
index bb86d68db..b13b2caf1 100644
--- a/themes/michelebologna.zsh-theme
+++ b/themes/michelebologna.zsh-theme
@@ -29,14 +29,13 @@ local cyan="%{$fg_bold[cyan]%}"
local yellow="%{$fg_bold[yellow]%}"
local blue="%{$fg_bold[blue]%}"
local magenta="%{$fg_bold[magenta]%}"
-local white="%{$fg_bold[white]%}"
local reset="%{$reset_color%}"
local -a color_array
-color_array=($green $red $cyan $yellow $blue $magenta $white)
+color_array=($green $red $cyan $yellow $blue $magenta)
-local username_color=$white
-local hostname_color=$color_array[$[((#HOST))%7+1]] # choose hostname color based on first character
+local username_color=$blue
+local hostname_color=$color_array[$[((#HOST))%6+1]] # choose hostname color based on first character
local current_dir_color=$blue
local username="%n"
@@ -66,10 +65,10 @@ function michelebologna_git_prompt {
local out=$(git_prompt_info)$(git_prompt_status)$(git_remote_status)
[[ -n $out ]] || return
printf " %s(%s%s%s)%s" \
- "%{$fg_bold[white]%}" \
+ "%{$fg_bold[blue]%}" \
"%{$fg_bold[green]%}" \
"$out" \
- "%{$fg_bold[white]%}" \
+ "%{$fg_bold[blue]%}" \
"%{$reset_color%}"
}