zsh / bashで使ってるPromptの色設定

- zsh版
PROMPT=$'%{\e[33m%}%~%{\e[00m%}
%{\e[36m%}%n@%m$%{\e[00m%} ' 
- bash版
PROMPT=$'%{\e[33m%}%~%{\e[00m%}
%{\e[36m%}%n@%m$%{\e[00m%} '
export PS1='\[\033[1;32m\]\w
\[\033[1;33m\]\u@\H\$ \[\033[1;37m\]'