yinren
yinren

Reputation: 11

how to change the terminal's theme of vscode

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?

the example of the condition

Upvotes: 0

Views: 1494

Answers (1)

Victor S.
Victor S.

Reputation: 2777

You can change the colors of the integrated terminal in the settings.

For example:

"workbench.colorCustomizations": {
    "terminal.ansiGreen": "#00EE00",
    "terminal.ansiWhite": "#EEEEEE",
},

Available color settings of integrated terminal.

Upvotes: 2

Related Questions