Reputation: 133
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.
Upvotes: 0
Views: 102
Reputation: 2860
You need to change dropdown.background
property in your setting.json file. Specifically,
"workbench.colorCustomizations": {
"dropdown.background": "#ff0000" // changes to red background
},
Upvotes: 1