Skip to content

Instantly share code, notes, and snippets.

@ksugawara61
Created January 24, 2024 00:36
Show Gist options
  • Save ksugawara61/5fc86e2039edda350c1eb3e96d2c278e to your computer and use it in GitHub Desktop.
Save ksugawara61/5fc86e2039edda350c1eb3e96d2c278e to your computer and use it in GitHub Desktop.
ワークスペースごとにVSCodeの色を変えたい #tool

.vscode/setting.json を以下のようにすればできる

{
  "workbench.colorTheme": "Solarized Dark",
  "workbench.colorCustomizations": {
    "titleBar.activeBackground": "#bce2e8",
    "titleBar.activeForeground": "#000000"
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment