2

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?

lbarqueira
  • 1,101
  • 1
  • 10
  • 28
CutePoison
  • 4,679
  • 5
  • 28
  • 63

1 Answers1

4

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

"workbench.colorCustomizations" : {
    "terminal.ansiYellow": "#1E1E1E",
}