在Sublime Text 2
编辑器中,我们可以像这样使用更改“修改/编辑的选项卡”的“文本颜色” "highlight_modified_tabs": true
。有用。
但它是鲜红色的,我该如何改变text color
它?
在Sublime Text 2
编辑器中,我们可以像这样使用更改“修改/编辑的选项卡”的“文本颜色” "highlight_modified_tabs": true
。有用。
但它是鲜红色的,我该如何改变text color
它?
这些设置的正确位置是在目录内的安装包文件夹中(可以使用打开Preferences -> Browse Packages
)Theme - Default
,在一个名为Default.sublime-theme
在第 570 行附近的某处,配置了选项卡标签。
它们看起来有点像这样:
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["file_light"]}],
"attributes": ["dirty"],
"settings": ["highlight_modified_tabs"],
"fg": [125, 00, 125]
},
您要配置其settings
属性设置为的那些["highlight_modified_tabs"]
。将属性更改fg
为所需的 RGB 值。
有四个不同的部分需要更改,它们似乎与选项卡背景的阴影相对应。
请注意,无需修改默认主题。Default.sublime-theme
您可以在User
包目录中创建一个名为的新文件,并仅存储将在主主题文件之后应用的更改。
我复制并粘贴了四个highlight_modified-tabs
部分并修改了我想要的两个。
[包] /User/Default.sublime-theme:
[
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["file_light"]}],
"attributes": ["dirty"],
"settings": ["highlight_modified_tabs"],
"fg": [125, 00, 125]
},
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["file_medium"]}],
"attributes": ["dirty"],
"settings": ["highlight_modified_tabs"],
"fg": [125, 00, 125]
},
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["file_medium_dark"]}],
"attributes": ["dirty"],
"settings": ["highlight_modified_tabs"],
"fg": [255, 161, 52]
},
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["file_dark"]}],
"attributes": ["dirty"],
"settings": ["highlight_modified_tabs"],
"fg": [255, 161, 52]
}
]
得到了答案Trevor Senior
The color schemes in sublime text are located in your sublime packages. In the menu navigate to Preferences -> Browse Packages... and they will all be listed in the Color Scheme - Default