Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change tooltip background color in VS2015

In VS2015 I have the Color Theme Editor extension installed and I'm using the Dark with Light Editor theme.

The hover tooltips are mostly unreadable as the tooltip background is too dark.

screenshot

I've tried changing settings in Tools → Options → Environment → Fonts and Colors, but couldn't find anything to make the signature just plain white. I've also tried cloning the theme through the theme editor and customizing the settings, but I don't know what settings would be responsible for this.

Does anyone know how to make this readable?

like image 654
Brandon Avatar asked Jul 30 '15 16:07

Brandon


People also ask

Can we change the background color of tooltip in tableau?

Issue. Cannot change the background color of the tooltip.

How do you change the background color on tooltip in flutter?

If you are looking to change the background color of Tooltip you can use the 'decoration' parameter it has, and just pass a BoxDecoration with your custom colors and whatnot. Mind you that BoxDecoration does not have rounded corners by default but you can easily add it again with the BorderRadius parameter.

How do I change the background color in Visual Studio?

Here's how to change it to a different color theme. On the menu bar, select Tools > Options. In the options list, select Environment > General. In the Color theme list, choose between the default Dark theme, the Blue theme, the Blue (Extra Contrast) theme, and the Light theme.

How do I change the background color in Visual Studio 2017?

Here's how to change the color theme of the IDE frame and the tool windows in Visual Studio. On the menu bar, choose Tools > Options. In the options list, choose Environment > General. In the Color theme list, choose either the default Dark theme, the Light theme, the Blue theme, or the Blue (Extra Contrast) theme.


2 Answers

You can change the tooltip background color like this (does not require Color Theme Editor extension):

  1. Tools > Options...
  2. Environment > Fonts and Colors
  3. Show settings for: Environment
  4. Display items: ToolTip
  5. Select color from Item background dropdown or click Custom button

Look of Options dialog with selected ToolTip item

like image 157
Goran Stefanović Avatar answered Sep 22 '22 19:09

Goran Stefanović


Using the Color Theme Editor extension, change the tooltip background color like this:

  1. Click on "Edit Theme"
  2. Click on "Show All Elements" in the menu bar (by default, only "Common Elements" are shown)
  3. Find the Environment -> ToolTip entry. This affects the tooltip background color.
like image 30
amain Avatar answered Sep 22 '22 19:09

amain