Console color is hard-coded
-
When using a terminal emulator with a background color other than black you start to notice that all user input is white on black. This hard-coding of colors is pointless and breaks the look of the terminal.
Image of the issue described:
To fix it one would need to change /root/.tcshrc from:
set prompt="%{\033[0;1;33m%}[%{\033[0;1;37m%}
cat /etc/version
%{\033[0;1;33m%}]%{\033[0;1;33m%}%B[%{\033[0;1;37m%}%n%{\033[0;1;31m%}@%{\033[0;1;37m%}%M%{\033[0;1;33m%}]%{\033[0;1;32m%}%b%/%{\033[0;1;33m%}(%{\033[0;1;37m%}%h%{\033[0;1;33m%})%{\033[0;1;36m%}%{\033[0;1;31m%}:%{\033[0;[u]40;37m%} "to:
set prompt="%{\033[0;1;33m%}[%{\033[0;1;37m%}
cat /etc/version
%{\033[0;1;33m%}]%{\033[0;1;33m%}%B[%{\033[0;1;37m%}%n%{\033[0;1;31m%}@%{\033[0;1;37m%}%M%{\033[0;1;33m%}]%{\033[0;1;32m%}%b%/%{\033[0;1;33m%}(%{\033[0;1;37m%}%h%{\033[0;1;33m%})%{\033[0;1;36m%}%{\033[0;1;31m%}:%{\033[0;[u]0;0m%} "
-
Good catch, just committed the fix.
Thanks!