There are different types of backlight:
- Syntax highlighting (place the cursor in a variable)

"editor.occurrencesHighlight": false
- Highlight highlight (similar fragments in the document)

"editor.selectionHighlight": false
- Highlight matching brackets
"editor.matchBrackets": false
There is a second way - to make them less intrusive (or completely transparent):
"workbench.colorCustomizations": { "editor.selectionHighlightBackground": "#0000", // similar selection "editor.selectionHighlightBorder ": "#0000", "editor.wordHighlightStrongBackground": "#0000", // syntax variable assignment "editor.wordHighlightStrongBorder": "#0000", "editor.wordHighlightBackground": "#0000", // syntax variable "editor.wordHighlightBorder": "#0000", "editorBracketMatch.border": "#0000",// brackets "editorBracketMatch.background": "#0000", }
Alex
source share