LoginSignup
13
7

More than 5 years have passed since last update.

Visual Studio Codeでテーマをカスタマイズする

Posted at

:ramen: 今回やること

選択されていないタブの背景色を黒くする(・ω・)

友人がtwitterで

VSCodeで開いてるタブと開いてないタブ見違えるんだけど俺の設定が悪いんかなぁ
逆が望ましい

その件については、自分も確かにな〜〜と思ってました。

:ramen: やってみよう!

  1. Cmd + , で設定ファイルを開きます。
  2. JSONらしきものが出現するので、こいつに下記の3行を追加します。
    "workbench.colorCustomizations": {
        "tab.inactiveBackground": "#000",
        "tab.activeForeground": "#fff",
    }

tab.inactiveBackground: 非アクティブタブの背景色
tab.activeForeground: アクティブのタブの文字色

:ramen: 設定するとこんな感じ

スクリーンショット 2017-06-08 15.18.42.png

:ramen: 参考

:ramen: さいごに

オススメのカスタマイズがあったら教えてください!

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