I would like matching brackets in vscode to be colored instead of given a border/background. What is the correct property for it in setting? Currently I have this:
{
"workbench.colorCustomizations": {
"editorBracketMatch.border": "#000",
"editorBracketMatch.background": "#000"
}
}
How should I modify this to get the desired result?


