如何更改 VSCode 中使用 ctrl + shift + p 出现的下拉菜单的颜色

How to change the color of the dropdown that appears with ctrl + shift + p in VSCode

我试图在我的 Vscode 上编辑一些主题,但在这一点上卡住了,因为我不知道这部分是什么,我们由 ctrl + shift + p[= 弹出14=]

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

到目前为止,我已经做了很多更改。

主要是quickInput 所以

"quickInput.background": "#f00"

会起作用。如果您不设置 quickInput 的样式,那么更通用的 editorWidget 也可以工作,但也会设置其他样式,例如 Find Widget。

"editorWidget.foreground": "#000",
"editorWidget.background": "#a8c0a8",