Change tooltip background color in VS2015

前端 未结 4 1228
小蘑菇
小蘑菇 2020-12-19 01:27

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

4条回答
  •  执笔经年
    2020-12-19 01:59

    This is a fix for users using Windows High Contrast Theme. In such case there is no way to change tooltip background color in Visual Studio options window and neither in Theme Color Editor extension.

    So to fix it:

    1. Go to /AppData/Local/Microsoft/Windows/Themes and find theme you are currently using.
    2. Open it in editor and find section [Control Panel\Colors]
    3. Modify properties InfoText and InfoWindow for example
      • InfoText=255 255 255
      • InfoWindow=0 0 0
    4. Reload current theme (switch to other theme and then back to this)

    Result (Visual Studio 2015 and Windows High Contrast theme):

    A

提交回复
热议问题