How do I change the color for directories with ls in the console?

To change your directory colors, open up your ~/.bashrc file with your editor

nano ~/.bashrc and make the following entry at the end of the file:

LS_COLORS=$LS_COLORS:’di=0;35:’ ; export LS_COLORS

Source: How do I change the color for directories with ls in the console? – Ask Ubuntu