fixing the selected color for autocomplete

pull/2858/head
lianahus 2 years ago committed by GitHub
parent 5d40823408
commit 658d708600
  1. 3
      libs/remix-ui/editor/src/lib/remix-ui-editor.tsx

@ -262,7 +262,8 @@ export const EditorUI = (props: EditorUIProps) => {
// see https://code.visualstudio.com/api/references/theme-color for more settings
'editor.background': textbackground,
'editorSuggestWidget.background': lightColor,
'editorSuggestWidget.selectedBackground': lightColor,
'editorSuggestWidget.selectedBackground': secondaryColor,
'editorSuggestWidget.selectedForeground': textColor,
'editorSuggestWidget.highlightForeground': infoColor,
'editor.lineHighlightBorder': secondaryColor,
'editor.lineHighlightBackground': textbackground === darkColor ? lightColor : secondaryColor,

Loading…
Cancel
Save