一直在尝试,但我很难改变特定HTML标签的颜色。我正在创建自己的自定义配色方案,我希望所有html表单标签(输入,文本区域,选择等)都有不同的颜色,但我似乎无法做到正确。
我的主题JSON文件中的代码:
// Matching all HTML tags for now just to see if it works...doesn't work
{
"name": "HTML form tags",
"patterns": "</?[a-z]+(([ ]+[a-z]+([ ]*=[ ]*(?:\".*?\"|'.*?'|[^'\">[ ]+))?)+[ ]*|[ ]*)/?>",
"settings": {
"fontStyle": "",
"foreground": "#F00" // Test color (it's red for high visibility)
}
}