这个插件的里面主题比较多比较漂亮
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
//following will be in italic
"function",
"entity.name.type.class", //class names
"constant", //String, Number, Boolean…, this, super
"keyword",
"storage"
],
"settings": {
"fontStyle": "bold",
// "foreground": "#240ab4"
}
},
{
"scope": "comment",
"settings": {
"fontStyle": "bold"
}
},
{
"scope":[
"entity.name.type.class"
],"settings": {
"foreground": "#03A1FE",
"fontStyle": "bold"
},
}
]
},
解释一下上面的东西
