For "ls --colors", the default is controlled by an environmental variable called LS_COLORS. To find your settings ...
There doesn't appear to be a man page that covers the variables or color values, but you can play around with them easily ...
Code:
export LS_COLORS="no=00:fi=00:di=00;36:ln=00;36:pi=40;33..."
The string "di" appears to represent directories, "fi" represents files, "ln" represents links, etc. The colors (which appear as a number or number;number) seem to be the same scheme used by the prompts ($PS1, $PS2, etc) ...
Code:
# Working directory in title bar, green prompt:
# 0;30m black
# 0;31m red
# 0;32m green
# 0;33m brown
# 0;34m blue
# In triplet a;b;c a is foreground b is background
PS1="\[\e]2;\w\a\e[37;41;1m\]>\[\e[0m\] "
See also
http://www-128.ibm.com/developerwork...tip-prompt/#h1