2
2

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.

VScode 行番号の色を変更する方法

Posted at

デフォルトの行番号の色、見にくくない?

git-decorations.png

行番号の色、画面を明るくしないと見えないよね?w

いっつも行番号を確認する時だけ画面を明るくしています。。
それが面倒なので調べてみると、結構簡単にできた!

設定画面を開いて、行番号の色を変更する

スクリーンショット 2020-11-06 11.45.51.png
Preferences>Settingsを開く

スクリーンショット 2020-11-06 11.43.58.png
コードで開く

スクリーンショット 2020-11-06 11.43.33.png
こんな感じでコードを追加すると、行番号が見やすくなりました:grin:

"workbench.colorCustomizations": {
  "editorLineNumber.foreground": "#999999"
}

参考

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?