我正在尝试在Visual Studio代码中更改基本类型的颜色。我更改了类似
的颜色 "editor.tokenColorCustomizations": {
"numbers": "#101010",
"strings": "#A31515",
"types": "#2B91AF", // this line changes all types colors include primitive types
"primitive_types": "#0000FF" // i looking for a property like this line, but there is no property like in this scope
},
答案 0 :(得分:0)
有时简单的标记颜色是不够的,您需要使用textMateRules
来更具体。
几天前,我在类似主题中回答,也许它将指导您并让您解决问题。
在这里: