I want to change background of this select box
, but i didn't find any properties for this.
In the above example, the select box
has dark color, how I can change it?
I know I should add particular property to the workbench.colorCustomizations
, but I don't know what to add.
CodePudding user response:
You need to change dropdown.background
property in your setting.json file. Specifically,
"workbench.colorCustomizations": {
"dropdown.background": "#ff0000" // changes to red background
},