I've recently tinkered with my .bash_profile to change the color and formatting of my Terminal command prompt. Unfortunately, in doing so, I've also caused for any text that I type in to appear in a very transparent shade:
Below are the contents of my .bash_profile:
PS1="\[\033[0;35m\]\u\[\033[1;33m\]@\[\033[1;33m\]\w\[\033[0;32m\]\$ "
export PS1;
export CLICOLOR=1
export LSCOLORS=Gafxcxdxbxegedabagacad
How might my .bash_profile file be modified to make all text as bright/bold as the bold-green and bold-yellow text shown in the image?