问题
Creating a VSCode theme for myself. I like the color configuration I have at the moment, but when I open the command palette, it is 'see-through' making it hard to read. How can I configure the palette when designing my theme?
回答1:
To change the background of the command palette, modify the sideBar.background
setting. More info
I had the exact same problem as you so I went hunting for it in the docs. At first I thought it was a list colour setting because changing list.focusBackground
changes the selected item in the command palette.
回答2:
V1.36 added these two colorCustomizations for the command palette/quick open panel:
"quickInput.background": "#ff0000",
"quickInput.foreground": "#fff"
Thanks to add color controls to quick open panel PR.
来源:https://stackoverflow.com/questions/50883705/how-to-customize-command-palette-color-when-creating-vscode-theme