Skip to content

Instantly share code, notes, and snippets.

@mweslander
Created September 20, 2019 15:44
Show Gist options
  • Select an option

  • Save mweslander/cdd464d59b0e09feb100d86e2820b520 to your computer and use it in GitHub Desktop.

Select an option

Save mweslander/cdd464d59b0e09feb100d86e2820b520 to your computer and use it in GitHub Desktop.
Override theme comment colors in vs code
{
"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