0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

setting.jsonでワークスペースの色を変える

Last updated at Posted at 2023-01-17

ワークスペースごとにタスクバーの色や文字色を変えると
気分転換になるのでメモ

VScodeの設定からのsetting.jsonは全体への設定であるのに対して
ワークスペース直下にある.vscode > setting.jsonは

スクリーンショット 2023-01-17 10.06.54.png

ワークスペースへの設定を行うのに使用する

setting.json
{
        "workbench.colorCustomizations": {
        "titleBar.activeBackground": "#ffa200", // タイトルバーの背景色(黄色)
        "titleBar.activeForeground": "#1e0808", // タイトルバーの文字色(黒っぽい茶色)
    },
}

こんな色味になる

スクリーンショット 2023-01-17 10.15.17.png

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?