Reputation:
My visual studio code looks like below
You can see that background color of popped up menu is white so that I can't see any menu item. How to change it?
Upvotes: 1
Views: 1619
Reputation: 182831
"workbench.colorCustomizations": {
"menu.background": "#ff0000"
}
in your settings.
When within the workbench.colorCustomizations
option, just type menu
and you will see a bunch of menu-related options to colorize.
Upvotes: 2