2
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?

【VSCode】OSの設定に合わせて配色テーマを変更する方法

Posted at

settings.json に以下の設定を追加することでOSの設定に合わせて配色テーマが変更されるようになります。

settins.json

{
  "window.autoDetectColorScheme": true,  // OSの設定に合わせて自動で配色テーマが変更されるようにする
  "workbench.preferredDarkColorTheme": "",  // ダークモードの場合に適用される配色テーマ
  "workbench.preferredLightColorTheme": "",  // ライトモードの場合に適用される配色テーマ
}

2
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
2
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?