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

VSCodeのホバーの枠線の色と背景色を変更する方法

Posted at

Visual Studio Codeでダーク系のテーマを使用しているとホバー(マウスカーソルを属性などに載せたときに表示されるもの)の境界が見づらいことがあります。
そこでその枠線の色と背景色を変更します。

Shift+Command+P から Preferences: Open Settings (JSON) を選択して、settings.json に以下を追加します。

settings.json
   "workbench.colorCustomizations": {
        "editorHoverWidget.background":"#2c2c2c",
        "editorHoverWidget.border": "#727272"
    },

変更前

image.png

変更後

image.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?