One of the things I want from VSCode is to have a familiar Studio look.
Thankfully VSCode is easily customizable so you can choose any color for any element.
Here's what I got so far:
To get the same look add to your settings.json:
"workbench.colorTheme": "Default Light+",
"editor.tokenColorCustomizations":{
"textMateRules": [
{
"scope": "entity.other.attribute-name.objectscript_class",
"settings": {
"foreground": "#000000"
}
},
{
"scope": "string.quoted.double.objectscript",
"settings": {
"foreground": "#068306"
}
},
{
"scope": ["comment.block.documentation.objectscript_class"],
"settings": {
"foreground": "#040482"
}
}
]
}
If you want to customize the color of other elements follow this guide.