-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Difference between single/double quotes #9
Comments
Since I cannot ensure a proper style in all languages, I'm not willing to add the requested style for this theme. I'd recommend you to try VSCode's own customizing options. You can override the specific style like this: {
"editor.tokenColorCustomizations": {
"[Darcula]": {
"textMateRules": [
{
"scope": [
"string.quoted.double",
],
"settings": {
"foreground": "#5f8c3d",
"fontStyle": "bold",
}
}
]
}
}
} |
Holy shit, man! Are you crazy!? Thanks a lot!!! |
I want to same color for text and variables in JS/TS how can I do that ? |
@Axibord Turn on For example, if you want to change above token in screenshot, you can add a rule for |
Good advice, thanks. |
On Intellij has some diference between quotes.

The text was updated successfully, but these errors were encountered: