user11078680
user11078680

Reputation:

How to change background color of vs code menu

My visual studio code looks like below

enter image description here

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

Answers (1)

Mark
Mark

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

Related Questions