I'm using native VSCode Bracket Pair Colorization and just realized it doesn't work with HTML, and specially CSS (which I'm more interested in). I tried looking in Settings and searching Google for some help, but didn't find any help. Does any of you guys know some .json setting, so I can add HTML/CSS to this feature?
I found this on Github and it's work. You can try it
"editor.language.colorizedBracketPairs": [
["[", "]"],
["(", ")"],
["{", "}"],
["<", "</"],
["<", "/>"]
],