Home > Software design >  How to change the color of the dropdown that appears with ctrl shift p in VSCode
How to change the color of the dropdown that appears with ctrl shift p in VSCode

Time:02-06

I was trying to edit some themes on my Vscode but got stuck at this point since I don't know what this section is referred as, that we pop up by ctrl shift p

Section that appears with ctrl   shift   p

  "workbench.colorCustomizations": {
    "editor.background": "#101a29",
    "sideBar.foreground": "#CAC9C9",
    "sideBarSectionHeader.foreground": "#CAC9C9",
    "editorGroupHeader.tabsBorder": "#c93e71",
    "editor.selectionBackground": "#ff6d6d32",
    "editor.wordHighlightBackground": "#ff6d6d32"
  },

I've did these many changes so far.

CodePudding user response:

Primarily that is the quickInput so

"quickInput.background": "#f00"

will work. If you don't style the quickInput then the more generic editorWidget will also work but will also style other things, like the Find Widget.

"editorWidget.foreground": "#000",
"editorWidget.background": "#a8c0a8",
  •  Tags:  
  • Related