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.

【VSCode】折りたたみの強調表示の色を変更する

Posted at

はじめに

VSCodeでコードを折りたたむと折りたたんだ行が以下のように強調表示されます。

スクリーンショット 2022-08-30 17.34.44.png

この強調表示の色の変更方法について記載します。

変更方法

stting.jsonに以下のように追記することで強調表示の色を変更できます。

~/Library/Application Support/Code/User/settings.json
{
  "workbench.colorCustomizations": {
    "editor.foldBackground": "#ffffff07"
  },
}

スクリーンショット 2022-08-30 17.36.07.png

また強調表示しないようにするには以下を追記します。

~/Library/Application Support/Code/User/settings.json
{
  "editor.foldingHighlight": false,
}

スクリーンショット 2022-08-30 17.38.23.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?