1
3

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 3 years have passed since last update.

Visual Studio Codeのダークテーマをさらに黒くしよう

Last updated at Posted at 2020-04-09

設定(JSON)に,以下のコードを付け加えて,

settings.json
"workbench.colorCustomizations": {
        "[Default Dark+]": {
            "titleBar.activeBackground": "#000",
            "sideBar.background": "#000",
            "tab.activeBackground": "#000",
            "tab.inactiveBackground": "#000",
            "editorGroupHeader.tabsBackground":"#000",
            "activityBar.background":"#000",
            "editor.background":"#000",
            "tab.activeBorder":"#ce9178",
            "tab.border": "#000"
        },
    }

配色テーマを「Default Dark+」に変更するとこうなります.
2020-04-10.png

参考にさせていただいた記事

【Visual Studio Code】v1.12.1 設定のためのSettings.jsonファイルについて
https://qiita.com/ayatokura/items/4301e0d1d8b339f722eb

Visual Studio Code の配色を好き勝手にカスタマイズした(settings.json)
https://qiita.com/deren2525/items/6bc099ae8c05e3076055

1
3
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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?