Shashank Gopikrishna
Shashank Gopikrishna

Reputation: 170

VSCode - Text highlight in "find" box

I recently installed VSCode on a new machine, but found something odd about highlighted text in the "find" box.

How would one change the highlight color in this field in VS Code?

Bad highlight color in find box

Upvotes: 2

Views: 558

Answers (1)

Mark
Mark

Reputation: 180657

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: 2

Related Questions