I know this post is old, but I just figured out a solution to this! The reason for this is that your home directory doesn't contain a specific file to allow these kinds of color operations within Terminal.
To fix this: (Make sure all terminal windows are closed before proceeding)
Open Nautilus/File Manager and turn on the 'Show Hidden Files' option. From there, check to see if you have a .bashrc
file in your Home directory.
If you do, delete it as there's a fresh, unconfigured back-up copy we'll add back into there later.
If you don't, no problem! To get a new, fresh copy of this file, navigate to /etc/skel/.bashrc
. Copy this file and paste it in your Home directory.
From there, open a new Terminal window, you should be all set as all other color options are visible (bold, cursor, highlight). You can now change and modify the color within the Preferences within Terminal. You can also manually change the colors by editing the .bashrc
file.
source .bashrc
. This command will reload your bash configurations from the new~/.bashrc
file – Nathan Lima May 26 '23 at 10:38