How to show colored bold texts in VS Code integrated terminal?

Viewed 63

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.

1 Answers

Search for "bold" in the Settings and disable "Terminal > Integrated: Draw Bold Text In Bright Colors":

enter image description here

Related