Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Bracket Pair Colorizer 3New to Visual Studio Code? Get it now.
Bracket Pair Colorizer 3

Bracket Pair Colorizer 3

Hoai.Huynh

|
88 installs
| (0) | Free
A customizable extension for colorizing matching brackets
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Bracket Pair Colorizer 3

A VS Code extension that colorizes matching brackets for improved code readability. Each nesting level gets its own color, making it easy to identify scope boundaries at a glance.

Maintained by Hoai Huynh.

Screenshot:
Screenshot


Settings

"bracket-pair-colorizer-3.colors"
Define the colors used to colorize brackets. Accepts valid color names, hex codes, and rgba() values.

"bracket-pair-colorizer-3.colors": [
    "Gold",
    "Orchid",
    "LightSkyBlue",
    "PaleGreen",
    "Coral",
    "LightSalmon",
    "MediumPurple",
    "Turquoise"
]

"bracket-pair-colorizer-3.forceUniqueOpeningColor"
Disabled Enabled

"bracket-pair-colorizer-3.forceIterationColorCycle"
Enabled

"bracket-pair-colorizer-3.colorMode"
Consecutive brackets share a color pool for all bracket types
Independent brackets allow each bracket type to use its own color pool
Consecutive Independent

"bracket-pair-colorizer-3.highlightActiveScope"
Should the currently scoped brackets always be highlighted?

"bracket-pair-colorizer-3.activeScopeCSS"
Choose a border style to highlight the active scope. Use {color} to match the existing bracket color
It is recommended to disable the inbuilt editor.matchBrackets setting if using this feature
BorderStyle

"bracket-pair-colorizer-3.activeScopeCSS": [
    "borderStyle : solid",
    "borderWidth : 1px",
    "borderColor : {color}",
    "opacity: 0.5"
]

"bracket-pair-colorizer-3.showBracketsInGutter"
Show active scope brackets in the gutter
Gutter

"bracket-pair-colorizer-3.showBracketsInRuler"
Show active scope brackets in the ruler

"bracket-pair-colorizer-3.rulerPosition"
Decoration position in the ruler

"bracket-pair-colorizer-3.showVerticalScopeLine"
Show a vertical line between the brackets? Enabled by default
Scope Line

"bracket-pair-colorizer-3.showHorizontalScopeLine"
Show a horizontal line between the brackets? Enabled by default
Scope Line

"bracket-pair-colorizer-3.scopeLineRelativePosition"
Disable this to show the vertical line in column 0
Scope Line

"bracket-pair-colorizer-3.scopeLineCSS"
Choose a border style to highlight the active scope. Use {color} to match the existing bracket color

"bracket-pair-colorizer-3.scopeLineCSS": [
    "borderStyle : solid",
    "borderWidth : 1px",
    "borderColor : {color}",
    "opacity: 0.5"
]

"bracket-pair-colorizer-3.excludedLanguages"
Exclude a language from being colorized


Commands

These commands will expand/undo the cursor selection to the next scope

"bracket-pair-colorizer-3.expandBracketSelection"
"bracket-pair-colorizer-3.undoBracketSelection"

Quick-start:

{
    "key": "shift+alt+right",
    "command": "bracket-pair-colorizer-3.expandBracketSelection",
    "when": "editorTextFocus"
},
{
    "key": "shift+alt+left",
    "command": "bracket-pair-colorizer-3.undoBracketSelection",
    "when": "editorTextFocus"
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft