vscode自定义标签颜色

时间:2020-07-29 05:43:29

标签: visual-studio-code vscode-settings

enter image description here 我想知道如何改变海军?颜色部分。 请帮我... :(

例如:"tab.activeBorder": "#18aa83"

1 个答案:

答案 0 :(得分:1)

要编辑标签颜色,可以使用以下标识符:

{
    "workbench.colorCustomizations": {
        "tab.activeBackground": "#ff0000",
        "tab.inactiveBackground": "#ff0000"
    }
}

您将其添加到您的settings.json文件中

tab picture

要更改标签页标题,可以使用以下命令:

"workbench.colorCustomizations": {
    "editorGroupHeader.tabsBackground": "#ff0000",
}

header group picture


您可以输入tab.,它会建议您更改类似的属性