LoginSignup
2
1

More than 3 years have passed since last update.

VSCode プロジェクト毎に色を分ける

Last updated at Posted at 2020-08-05

.vscode/settings.jsonを作成

プロジェクトルートに.vscode/ディレクトリを作成
.vscode/settings.jsonを作成

settings.jsonに記述

settings.json
{
    "workbench.colorCustomizations": {
        "titleBar.activeBackground": "#FFFFFF",
        "titleBar.activeForeground": "#000000",
        "activityBar.background": "#FFFFFF",
        "activityBar.foreground": "#000000"
    }
}
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1