Reputation: 11
I installed this new theme called Panda Theme. Everything looks good except for the two extra bold lines under the wavy error and warning underline. This happens to all languages.
Does anyone know where to change this back to the default, but still keep the theme?
example image of error underline, and the default that I want it to be
Upvotes: 0
Views: 244
Reputation: 11
Ah yes these two lines editorError.border
and editorWarning.border
was in charge of the extra lines. Putting these into setting.json helped. Thanks @rioV8 for the suggestion.
"workbench.colorCustomizations": {
"editorError.border": "#00000000",
"editorWarning.border": "#00000000",
}
Upvotes: 1