# my .bash_profile
function parse_git_branch {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
YELLOW="\[\033[0;33m\]"
WHITE="\[\033[1;37m\]"
PS1="\w$YELLOW \$(parse_git_branch)$WHITE\$ "
for some reason the final $
and all of the text after that (what I actually type into the terminal) is now a bold white color.
I want it to be normal text-weight and white. How would I fix this?