I want to print some colored bold texts in terminal, but I got bright colored regular texts instead. It seems to me that only white can be displayed in bold size.
For example, when I run echo -e "\e[1ma", I can get a bold letter a in white, while running echo -e "\e[1;31ma" gives me a regular letter a in bright red
update: I found out that when I connect to a server using remote-ssh, I can get colored bold text in terminal as expected. But if I open a terminal in local project, I can only see bright regular text even if I ssh to the server in this terminal.
