LoginSignup
0
0

More than 1 year has passed since last update.

VSCodeのステータスバーの色を変更する

Last updated at Posted at 2021-08-09

VSCodeの設定ファイルを開く

settings.json
{
    // 以下を追加
    "workbench.colorCustomizations": {
        "statusBar.background": "#1C1C1C",
        "statusBar.foreground": "#848484"
    },
}

変更後のステータスバー
背景色をエディタ部分の背景と合わせ、文字色を主張が弱い色に変更した

スクリーンショット 2021-08-10 3.14.39.png

参考
https://code.visualstudio.com/api/references/theme-color#status-bar-colors

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