Reputation: 23
I'm currently using the Pure theme for zsh, but the default blue is really dark. Is it possible to change only the blue (i.e. I don't want to install zsh-syntax-highlighting
)?
Upvotes: 2
Views: 5504
Reputation: 71
if this is not effect, you need custom your theme
custom your theme
echo $ZSH_CUSTOM
cd ~/.oh-my-zsh/custom
mkdir themes
mate themes/xxx.zsh-theme
ZSH_THEME="xxx"
fourth open your xxx.zsh-theme, u can change anything.
maybe you need copy a sample: https://github.com/robbyrussell/oh-my-zsh/tree/master/themes
Upvotes: 1
Reputation: 2726
As the color is set via %F{blue}
inside the theme the exact color used for blue
is set in your terminal (most probably).
So to change this color you need to check how to configure those colors for your terminal.
Just as an example here is a superuser answer for "How to set color terminal for iTerm2?"
Upvotes: 4