William L
William L

Reputation: 23

Customize Prompt Color for Pure Theme?

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

Answers (2)

bergman
bergman

Reputation: 71

  1. change terminal profile open terminal
    • cmd + , show terminal profiles
    • change any [ansi colors] that you didnot like

if this is not effect, you need custom your theme

  1. custom your theme

    • first find the dir

    echo $ZSH_CUSTOM

    • second build the theme file

    cd ~/.oh-my-zsh/custom mkdir themes mate themes/xxx.zsh-theme

    • third fix the ~/.zshrc file change theme:

    ZSH_THEME="xxx"

Upvotes: 1

AnimiVulpis
AnimiVulpis

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

Related Questions