skip to Main Content

I am using VSCode with the C# dev kit. When I write some code that is not a compile error, but could be improved, there will be three red dots the show up under my code. They are sort of hard for me to see.

Is there a way I can either make these dots bigger, or a different color? I already use my own custom theme, but I have no clue what is controlling the color of these dots.

Thanks!

2

Answers


  1. VS Code allows you to modify which theme your using, which will influence the squiggles. You can create a new theme where you specify your desired dots colors by going to settings (click on File, then Preferences), looking for something like "editorWarning.foreground" or "editorError.foreground", and changing the colors.

    You could also just change which theme your using to make the three dots easier to see, but that would influence the whole view.

    Login or Signup to reply.
  2. You can change the colour using the editorHint.foreground colour customization point. Ex. in settings.json:

    "workbench.colorCustomizations": {
        "editorHint.foreground": "#ff0000"
    },
    

    I don’t think there’s a way to change the size. You could raise a feature-request.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search