Reputation: 11
My terminal of vscode can't show some words when the color of the words isn't white. So what methods you have to solve the condition,please? For example, change the theme of terminal? But, how to change the theme?
Upvotes: 0
Views: 1494
Reputation: 2777
You can change the colors of the integrated terminal in the settings.
For example:
"workbench.colorCustomizations": {
"terminal.ansiGreen": "#00EE00",
"terminal.ansiWhite": "#EEEEEE",
},
Upvotes: 2