Merge pull request #2858 from ethereum/autoc

fixing the selected color for autocomplete
pull/2864/head
bunsenstraat 2 years ago committed by GitHub
commit c15c999e85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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