Visual-Studio-Code – How to change the indent boot line color between VSCODE brackets?

I want to change the color of the line between the 2 brackets.

Actually, I want this

enter image description here

This is what I want

enter image description here

Does anyone know how this is done ?

Thank you very much

VSCode v.1.23 (released in May 2018) Added the ability to color the active and other inactive indent guides:

"workbench.colorCustomizations": {
"editorIndentGuide.activeBackground": "#ff0000",
"editorIndentGuide.background": "#ff00ff"
}

See release notes indent guides

If you only want to show activity guides , Please set the background of the inactive guide to transparent ala:

"workbench.colorCustomizations": {
"editorIndentGuide.background": "#fff0"
}

I want to change the color of the line between the 2 brackets.

Actually, I want this

enter image description here

This is what I want

enter image description here

Does anyone know How is this done?

Thank you very much

VSCode v.1.23 (released in May 2018) adds guidelines for active and other inactive indentation Coloring function:

"workbench.colorCustomizations": {
"editorIndentGuide.activeBackground": "#ff0000",
"editorIndentGuide. background": "#ff00ff"
}

See release notes indent guides

If you only want to display active guides, please set the background of inactive guides to transparent ala :

"workbench.colorCustomizations": {
"editorIndentGuide.background": "#fff0"
}

< p>

Leave a Comment

Your email address will not be published.