visual-studio-code icon indicating copy to clipboard operation
visual-studio-code copied to clipboard

Consider more contrast for comments

Open josh-k-cb opened this issue 5 years ago • 1 comments

Description

The theme could benefit from more color contrast for comments in Typescript files, especially during diff.

Standard comment: image

Diff comment: image

I've personally applied these:

  "editor.tokenColorCustomizations": {
    "[Nord]": {
      "comments": "#81A1C1"
    }
  },
  "workbench.colorCustomizations": {
    "[Nord]": {
      "diffEditor.insertedTextBackground": "#5E81AC33"
    }
  }

to get this:

Standard comment: image

Diff comment: image

My solution might not be 'pure Nord' but I can read comments during diff, which is nice

Benefits

Readability

Possible Drawbacks

Objective opinion

josh-k-cb avatar Dec 24 '20 04:12 josh-k-cb

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.

crizant avatar Jul 28 '21 22:07 crizant