skip to Main Content

How do I change the background colour of the inline suggestion? From what I can see, there aren’t any specific options targetting inline type corrections.

"editor.selectionHighlightBackground": "#ffffff1a",
"editor.findMatchHighlightBackground": "#ecb5464d",
"editor.findRangeHighlightBackground": "#ffffff1a",
"editor.rangeHighlightBackground": "#ffffff33",
"editor.hoverHighlightBackground": "#ffffff1a",
"editor.wordHighlightBackground": "#ffffff33",
"editor.lineHighlightBackground": "#ffffff1a",

enter image description here

2

Answers


  1. Chosen as BEST ANSWER

    I changed "badge.background" to fix it


  2. Add the following to your settings (settings.json) to customize the background color:

    {
      "workbench.colorCustomizations": {
        "editor.inlineSuggest.background": "#00000033"  // Example: Semi-transparent black
      }
    }
    
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search