visual-studio-code
visual-studio-code copied to clipboard
Consider more contrast for comments
Description
The theme could benefit from more color contrast for comments in Typescript files, especially during diff.
Standard comment:

Diff comment:

I've personally applied these:
"editor.tokenColorCustomizations": {
"[Nord]": {
"comments": "#81A1C1"
}
},
"workbench.colorCustomizations": {
"[Nord]": {
"diffEditor.insertedTextBackground": "#5E81AC33"
}
}
to get this:
Standard comment:

Diff comment:

My solution might not be 'pure Nord' but I can read comments during diff, which is nice
Benefits
Readability
Possible Drawbacks
Objective opinion
This is exactly what i've been looking for, thanks! Finally I can see comments in the git diff panel. I think this should be applied by default.