代码之家  ›  专栏  ›  技术社区  ›  Coder Absolute

更改VS代码的标题栏颜色?

  •  6
  • Coder Absolute  · 技术社区  · 7 年前

    Title Bar Visual Studio代码的颜色(v1.26.0)?

    4 回复  |  直到 5 年前
        1
  •  33
  •   Peter Mortensen icecrime    5 年前
    1. 菜单 文件 偏好

    2. 寻找 "window.titleBarStyle": "native" ,将其复制到用户设置,并将其更改为 "window.titleBarStyle": "custom" . 现在它将调整你的主题。

    3. 在用户设置中,添加以下内容。

      "workbench.colorCustomizations": {
          "[Name of the Current Theme you are using]": {
              "titleBar.activeBackground": "#191919cc",
              "titleBar.activeForeground":"#ffffff",
          },
      },
      "window.titleBarStyle": "custom"
      
        2
  •  20
  •   Peter Mortensen icecrime    5 年前

    cmd palette

    打开菜单 文件 偏好 设置 并添加以下设置:

    "workbench.colorCustomizations": {
      "titleBar.activeBackground": "#553955" // Change this color!
    }
    

    Result

    从以下来源:

    Colorful Visual Studio Code titlebars for better productivity

        3
  •  5
  •   Peter Mortensen icecrime    5 年前

    窗口颜色 它自动为每个窗口的活动栏和标题栏设置唯一的颜色。

    Enter image description here

    有关详细信息,请参见Visual Studio代码 marketplace webpage

        4
  •  3
  •   Peter Mortensen icecrime    5 年前

    John Papa 推出 Peacock 几个月前。从那以后我一直在用这个。

    它是高度可定制的。

    它还强调 BrandColors 当您同时处理涉及不同框架和库的多个不同项目时,它非常有用。

        5
  •  0
  •   Peter Mortensen icecrime    5 年前

    我创建了一个简单的Visual Studio代码插件,它接受正则表达式和颜色的列表,并根据它们更改标题栏。很适合工作 mono repositories 或具有多个包的大型项目(如 Lerna ,或 React + React Native )

    ColorTabs