diff options
author | deimosian <deimosian@gmail.com> | 2021-12-13 16:52:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-13 22:52:32 +0100 |
commit | f42aa49cfdfc56b784744d3e421f297ab03efbdc (patch) | |
tree | b4d7ea24f142b0be6720b20eb2b05cc43c9ba2f3 /themes/ys.zsh-theme | |
parent | 9a3d853481645ae0f961e9cc8421fc5d84e2c3c3 (diff) | |
download | zsh-f42aa49cfdfc56b784744d3e421f297ab03efbdc.tar.gz zsh-f42aa49cfdfc56b784744d3e421f297ab03efbdc.tar.bz2 zsh-f42aa49cfdfc56b784744d3e421f297ab03efbdc.zip |
fix(ys): use default color instead of gray for improved readability (#10506)
Diffstat (limited to 'themes/ys.zsh-theme')
-rw-r--r-- | themes/ys.zsh-theme | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/themes/ys.zsh-theme b/themes/ys.zsh-theme index 251b48827..45bbae2d1 100644 --- a/themes/ys.zsh-theme +++ b/themes/ys.zsh-theme @@ -5,10 +5,8 @@ # # Mar 2013 Yad Smood -typeset +H my_gray="$FG[247]" - # VCS -YS_VCS_PROMPT_PREFIX1=" %{$my_gray%}on%{$reset_color%} " +YS_VCS_PROMPT_PREFIX1=" %{$reset_color%}on%{$fg[blue]%} " YS_VCS_PROMPT_PREFIX2=":%{$fg[cyan]%}" YS_VCS_PROMPT_SUFFIX="%{$reset_color%}" YS_VCS_PROMPT_DIRTY=" %{$fg[red]%}x" @@ -62,13 +60,13 @@ local exit_code="%(?,,C:%{$fg[red]%}%?%{$reset_color%})" PROMPT=" %{$terminfo[bold]$fg[blue]%}#%{$reset_color%} \ %(#,%{$bg[yellow]%}%{$fg[black]%}%n%{$reset_color%},%{$fg[cyan]%}%n) \ -%{$my_gray%}@ \ +%{$reset_color%}@ \ %{$fg[green]%}%m \ -%{$my_gray%}in \ +%{$reset_color%}in \ %{$terminfo[bold]$fg[yellow]%}%~%{$reset_color%}\ ${hg_info}\ ${git_info}\ ${venv_info}\ \ -%{$my_gray%}[%*] $exit_code +[%*] $exit_code %{$terminfo[bold]$fg[red]%}$ %{$reset_color%}" |