Skip to content

Instantly share code, notes, and snippets.

@eczn
Created November 27, 2024 07:44
Show Gist options
  • Save eczn/23b66931068b71fcfc7047c42b099a1f to your computer and use it in GitHub Desktop.
Save eczn/23b66931068b71fcfc7047c42b099a1f to your computer and use it in GitHub Desktop.
手动覆盖 VSCode 主题的配色

有时候对主题各方面都感觉很好,但是有一两个地方的颜色感觉还是不太好,此时又不想太麻烦可以通过 vscode 的 workbench.colorCustomizations 项进行覆盖配置:

"workbench.colorCustomizations": {
    "[Popping and Locking]": { // ⬅️ 用中括号括起来 主题名字
        "tab.border": "#484a5c",
        "tab.activeBackground": "#484a5c",
        "tab.activeBorder": "#ed0a0a"
    }
},

这样就可以覆盖修改主题的一部分颜色了。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment