Skip to content

Instantly share code, notes, and snippets.

@nikonov91-dev
Last active July 15, 2018 06:09
Show Gist options
  • Save nikonov91-dev/604a02b80bf10739fb6bd74c17f99620 to your computer and use it in GitHub Desktop.
Save nikonov91-dev/604a02b80bf10739fb6bd74c17f99620 to your computer and use it in GitHub Desktop.
Change class color in VisualStudio Code, setup custom color for VSCode, VSCode settings
"editor.tokenColorCustomizations": {
"textMateRules": [{
"scope": "entity.name.class, entity.name.type",
"settings": {
"foreground": "#A6E22E"
}
}]
}
@nikonov91-dev
Copy link
Author

this is really working customization of class name.
here is a link with raw solution which partially helped me because of some misspellings
microsoft/vscode#27894 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment