Created
September 20, 2019 15:44
-
-
Save mweslander/cdd464d59b0e09feb100d86e2820b520 to your computer and use it in GitHub Desktop.
Override theme comment colors in vs code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| "comment", | |
| "comment storage.type", | |
| "comment variable", | |
| "comment support.variable", | |
| "comment support.class", | |
| "comment support.type", | |
| "comment entity.name.type", | |
| "comment entity.name.class", | |
| "comment keyword.operator", | |
| "comment punctuation" | |
| ], | |
| "settings": { | |
| "foreground": "#546e7a" | |
| } | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment