skip to Main Content

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).

2

Answers


    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.
    Login or Signup to reply.
  1. 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 this link.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search