Search code examples
visual-studio-codecolors

VSC: color customization of error message


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.


Solution

  • 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.