Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change the highlight-color/text-color in VSCode traceback

In VSCode a highlight of the error-lines has been introduced (which I find fantastic!).

The issue is, that the highlight color is yellow and the text white, thuse I barely read the lines, see below enter image description here

Is there a way to change either the highlight color/the text in the highlighted box or the "intensity" of the yellow i.e make it more transparent?

like image 611
CutePoison Avatar asked Sep 12 '25 19:09

CutePoison


1 Answers

One solution is to use the field terminal.ansiYellow in settings.json to change the highlight color, e.g.,

"workbench.colorCustomizations" : {
    "terminal.ansiYellow": "#1E1E1E",
}
like image 174
Mikkel Tiller Avatar answered Sep 15 '25 13:09

Mikkel Tiller