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

Viewed 293

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?

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",
}
Related