JSON in JavaScript files doesn't use the new colors for property names
Thanks for the fix regarding the color for property names in JSON files (#303). However, JSON objects in JavaScript files still uses the old colors for property names (see the screenshot below), so it would be great if the same change can be applied to JSON objects in JavaScript files as well.

I figured out that you can currently achieve this via token color customizations in VS Code as a temporary workaround:
"editor.tokenColorCustomizations": {
"[GitHub Dark Default]": {
"textMateRules": [
{
"scope": [
"meta.object-literal.key.js string.quoted.double.js",
"meta.object-literal.key.js string.quoted.single.js"
],
"settings": {
"foreground": "#7EE787"
}
}
]
}
},
Which results in the desired colors being applied for JSON property names in JavaScript files:

👋🏼 Thanks for raising this PR. The current colour of the JSON property names in JS files are matching with github.com . Please see the screenshot below. The goal of this theme is to stay as close to github.com as possible and you can read more about the motivation here. I'm marking this issue as closed but please let us know if you have any concerns 🙌🏼