本文介绍了vscode 自定义标签颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道怎么换海军?颜色部分.请帮我...:(
I want to know how to change navy? color section.Please help me...:(
例如:tab.activeBorder":#18aa83"
推荐答案
要编辑选项卡颜色,您可以使用以下标识符:
To edit the tab colors you can use the following identifiers:
{
"workbench.colorCustomizations": {
"tab.activeBackground": "#ff0000",
"tab.inactiveBackground": "#ff0000"
}
}
您将其添加到您的 settings.json
文件
You add that to your settings.json
file
要更改选项卡标题,您可以使用以下内容:
To change the tabs header you can use the following:
"workbench.colorCustomizations": {
"editorGroupHeader.tabsBackground": "#ff0000",
}
您可以输入tab.
,它会建议您可以更改的类似属性
You can type tab.
and it will suggest similar properties you can change
这篇关于vscode 自定义标签颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!