Sublime Text 2更改表单标签的颜色:<input />,<textarea>等</textarea>

时间:2012-10-13 13:21:08

标签: html colors sublimetext2

一直在尝试,但我很难改变特定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)
    }
}

我从here获得了正则表达式,并在Regexr中进行了测试。

0 个答案:

没有答案