Reputation: 813
I've searched for this setting for a while now, but just can't find it. How can I change the background color of selected text in the search box? Here is an example - as you can see (or not), foo is selected. I'd like to change the background color of that selection.
Upvotes: 1
Views: 972
Reputation: 182974
Oddly, it is just
"workbench.colorCustomizations": {
"selection.background": "#ff0000",
}
Stumbled on it at theme base colors:
selection.background
: Background color of text selections in the workbench (for input fields or text areas, does not apply to selections within the editor and the terminal).
Upvotes: 1