Come altri hanno affermato, dovrai sovrascrivere editor.tokenColorCustomizations
l' workbench.colorCustomizations
impostazione o nel file settings.json. Qui puoi scegliere un tema di base, come Abyss, e sovrascrivere solo le cose che vuoi cambiare. Puoi sovrascrivere pochissime cose come la funzione, i colori delle stringhe ecc. Molto facilmente.
Ad esempio per workbench.colorCustomizations
"workbench.colorCustomizations": {
"[Default Dark+]": {
"editor.background": "#130e293f",
}
}
Ad esempio per editor.tokenColorCustomizations
:
"editor.tokenColorCustomizations": {
"[Abyss]": {
"functions": "#FF0000",
"strings": "#FF0000"
}
}
Tuttavia, personalizzazioni profonde come cambiare il colore del var
parola chiave richiedono di fornire i valori di sostituzione sotto la textMateRules
chiave.
Ad esempio sotto:
"editor.tokenColorCustomizations": {
"[Abyss]": {
"textMateRules": [
{
"scope": "keyword.operator",
"settings": {
"foreground": "#FFFFFF"
}
},
{
"scope": "keyword.var",
"settings": {
"foreground": "#2871bb",
"fontStyle": "bold"
}
}
]
}
}
Puoi anche eseguire l'override globale tra i temi:
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"entity.name.type.class",
"keyword",
"storage.modifier",
"storage.type.class.js",
"storage.type.function.js",
"storage.type.js",
"keyword.control.import.js",
"keyword.control.from.js",
"keyword.control.flow.js",
"keyword.control.conditional.js",
"keyword.control.loop.js",
"keyword.operator.new.js",
],
"settings": {
"fontStyle": "italic"
}
}
]
}
Maggiori dettagli qui: https://code.visualstudio.com/api/language-extensions/syntax-highlight-guide
workbench.colorCustomizations
eeditor.tokenColorCustomizations
nelle impostazioni utente: code.visualstudio.com/docs/getstarted/… .