Open1
VSCodeの設定あれこれ
フォルダ毎の色を変更する
フォルダ内にて以下コマンドを実行し、設定ファイルを作成
command
mkdir .vscode
touch .vscode/settings.json
code .vscode/settings.json
settings.jsonが開くので以下を記述する
settings.json
{
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#a67df2",
"titleBar.activeForeground": "#000000",
"activityBar.background": "#a67df2",
"activityBar.foreground": "#000000",
"statusBar.background": "#a67df2",
"statusBar.foreground": "#000000"
}
}
以下のようになる