I can't find the option in settings to change background color which appears automatically when cursor is on some unity (token?). What's the name of this background color option?
Asked
Active
Viewed 838 times
0

amordo
- 449
- 5
- 15
1 Answers
1
Try adding this:
"workbench.colorCustomizations": {
"editor.selectionBackground": "#135564",
"editor.selectionHighlightBackground": "#135564"
},
OR
"workbench.colorCustomizations": {
"editor.findMatchBackground": "#00cc44a8",
"editor.findMatchHighlightBackground": "#ff7b00a1"
},
for more details see this POST

Snir Ego
- 82
- 6
-
"editor.selectionHighlightBackground" option does it. TY! – amordo May 02 '22 at 16:43