In case you really like that color pallet used by Mosh (like me) - Here is how I ended up with my VSCode settings -
In VSCode I adopted Ayu (Mirage) version 14.0 - that is the version I saw in one of Mosh’s intro JavaScript lectures on how to setup VSCode. This version of Ayu has pretty much all colors the same as we see on Mosh’s JavaScript course, except for objects e.g. “console”.
Finally I edited the theme environment ayu-mirage.json file in VSCode (path on a Mac is ~/.vscode/extensions/teabyii.ayu-0.14.0/assets). I added the following lines
…
“tokenColors”: [
{
“settings”: {
“foreground”: “#d9d7ceff”,
“background”: “#212733ff”
}
},
{
"scope": [
"variable.other.object.js"
],
"settings": {
"foreground": "#5ccfe6"
}
},
{
“name”: “Comments”,
“scope”: “comment, punctuation.definition.comment”,
“settings”: {
“foreground”: “#5C6773”
}
},
…
This will make all objects in JS blue.
I hope that helps.