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
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.
You can change the colour using the
editorHint.foreground
colour customization point. Ex. in settings.json:I don’t think there’s a way to change the size. You could raise a feature-request.