thenikso/github-plus-theme

Intellisense selected text matches background color making it impossible to see

trafnar opened this issue · 2 comments

After updating vscode to 1.57.0, the background color of the intellisense popup selected item matches the color of the highlighted text making it invisible.

image

If anyone else is having this problem, I temporarily fixed it by adding these lines to my settings.json file:

  "workbench.colorCustomizations": {
    "editorSuggestWidget.selectedBackground": "#B1DAFF",
    "editorSuggestWidget.selectedForeground": "#24292E"
  }

I also had that issue for the quick open (Command-P):

  "workbench.colorCustomizations": {
    "editorSuggestWidget.selectedBackground": "#B1DAFF",
    "editorSuggestWidget.selectedForeground": "#24292E",
    "quickInputList.focusBackground": "#B1DAFF",
    "quickInputList.focusForeground": "#24292E"
  }

this problem was driving me nuts as well! with the latest 1.4.1 published version this should be fixed together with a tweak to list.focusHighlightForeground