VSC: color customization of error message

Viewed 15

does somebody knows how to change color of this? enter image description here

i was messing around the color customization, i just overviewed settings end editor tokens but none of them was set to such a bright yellow color.

1 Answers

In settings.json change the terminal.ansiYellow for the theme you use.

In the example I used Default Dark+ theme.

  "workbench.colorCustomizations": {
    "[Default Dark+]": {
      "terminal.ansiYellow": "#777117"
    }
  }

Maybe better to create an issue at the VSC repo to request a change of the bright Yellow of the Default Dark+

Or they should not use light colors on a light background, whatever the theme.

Related