black7375 / BlaCk-Void-Zsh

🔮 Awesome, Customable Zsh Starter Kit 🌠🌠
MIT License
338 stars 38 forks source link

Can you help me? #5

Closed Peter-Roh closed 5 years ago

Peter-Roh commented 5 years ago

Screenshot from 2019-09-05 10-42-31

I've installed it and I have only one problem. As you see in the picture, I can barely see 'on the master' part. How can I change that part to make it vivid?

(I am using ubuntu 19.04)

black7375 commented 5 years ago

When using default setting

VCS and Load color are the same color, but it's strange..

Create custom theme setting.

cp $BVZSH/BlaCk-Void.ztheme ~/.ztheme

Change _powerline-nerd() 's ##-----Color Set

  typeset -g POWERLEVEL9K_VCS_CLEAN_FOREGROUND='000'               #alpha
  typeset -g POWERLEVEL9K_VCS_CLEAN_BACKGROUND='040'               #green or'165' #purple
  typeset -g POWERLEVEL9K_VCS_UNTRACKED_FOREGROUND='000'           #alpha
  typeset -g POWERLEVEL9K_VCS_UNTRACKED_BACKGROUND='040'           #green
  typeset -g POWERLEVEL9K_VCS_MODIFIED_FOREGROUND='000'            #alpha
  typeset -g POWERLEVEL9K_VCS_MODIFIED_BACKGROUND='208'            #orange

Colors refer to for code ({000..255}) print -P -- "$code: %F{$code}This is how your text would look like%f"

When using custom setting

Change to default setting.

  typeset -g POWERLEVEL9K_VCS_CLEAN_FOREGROUND='000'               #alpha
  typeset -g POWERLEVEL9K_VCS_CLEAN_BACKGROUND='040'               #green or'165' #purple
  typeset -g POWERLEVEL9K_VCS_UNTRACKED_FOREGROUND='000'           #alpha
  typeset -g POWERLEVEL9K_VCS_UNTRACKED_BACKGROUND='040'           #green
  typeset -g POWERLEVEL9K_VCS_MODIFIED_FOREGROUND='000'            #alpha
  typeset -g POWERLEVEL9K_VCS_MODIFIED_BACKGROUND='208'            #orange
Peter-Roh commented 5 years ago

Thanks a lot! This helped so much.