gerane / VSCodeThemes

Themes for Visual Studio Code
200 stars 77 forks source link

Please make invalid code highlight in red (or a similarly distinct color) in Abyss #85

Open rl-utility-man opened 4 years ago

rl-utility-man commented 4 years ago

The default syntax highlighting for invalid code is red in the default dark color scheme, which is great. But it defaults to bright white in Abyss, which is quite similar to valid code. Consider making something like the setting below the default for Abyss and any other default color scheme that does not make invalid code jump out and perhaps also documenting this feature better -- it took me about an hour to figure out that this was I needed to add to my settings.json file

"editor.tokenColorCustomizations": {

    "[Abyss]": {
[{"scope":"invalid", "settings":{"foreground":"#f44747"}}] }

},
rl-utility-man commented 4 years ago

https://github.com/gerane/VSCodeThemes/pull/87 fixes this