I would like to change the color of the line between 2 brackets.
Actually, I want this
Here is what I would like
Does anyone know how to do that?
Many Thanks
The feature can be enabled by adding the setting "editor. bracketPairColorization. enabled": true .
You can configure each color (the error color and four indent colors) independently for each scheme (Settings / Editor / Color Scheme / Indent Rainbow). Firstly, uncheck checkbox "Inherit values from", then change background color. See screenshot for details.
VSCode v.1.23 (released May, 2018) added the ability to colorize the active and other inactive indent guides:
"workbench.colorCustomizations": { "editorIndentGuide.activeBackground": "#ff0000", "editorIndentGuide.background": "#ff00ff" }
See release notes indent guides
If you only want the active guides to be visible, set the background of the inactives to transparent ala:
"workbench.colorCustomizations": { "editorIndentGuide.background": "#fff0" }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With