How to disable rainbow indent without extension in vs code

Viewed 26

i disabled all extension but code is rainbow

I disabled all extensions but my bracket is rainbow. I used 'Deveoper: Reload with Extensions Disabled'

Has this function been incorporated as a basic function? Does anyone have any clue how to turn this off?
Do I have to remove something?

Thank you for listening to my whining.

1 Answers

The brackets coloring is native and not an extension. Go to the settings and search for bracketPair to disable.

"editor.bracketPairColorization.enabled": false

Related