Home > OS >  How to change the tool-tip's font and background color?
How to change the tool-tip's font and background color?

Time:06-11

With older, color challenged eyes I find it hard to read the small, white font used in tool-tips against the tool-tip's grey background.

I am looking for the name of the settings which controls the font color and the background color. Also, where are said settings stored, i.e. what is the fully qualified filename? I'm working with both Windows and Linux (Win11, Win10, Ubuntu, and Raspberry Pi OS).

CodePudding user response:

If this is what you want!

Add these to your setting.json

 "workbench.colorCustomizations": {
    "editorHoverWidget.background": "#B98389"
  },

How did I found it?

  • Open setting.json.
  • Go inside "workben.colorCustomizations" block.
  • Type "hover" and read the suggestions.

About Setting.json

visit

CodePudding user response:

  1. Open The Vs Code (visual Studio code).
  2. Click the top left side file menu.
  3. Click preferences and in side of 3rd row Click themes. enjoy you visual studio code.
  • Related