Skip to content

Instantly share code, notes, and snippets.

@wcdz
Last active June 17, 2022 05:50
Show Gist options
  • Save wcdz/37a806b9eb5cfd74f74871bfd5986443 to your computer and use it in GitHub Desktop.
Save wcdz/37a806b9eb5cfd74f74871bfd5986443 to your computer and use it in GitHub Desktop.
Estilar las llaves, parentesis y corchetes en vscode

Configuración nativa de Bracket Colorizer

Esta configuracion debes realizarla en el setting.json accediendo con el comando ctrl+shift+p

###Opcion 1

 "editor.bracketPairColorization.enabled": true,
 "workbench.colorCustomizations": {
    "editorBracketHighlight.foreground1": "#fafafa",
    "editorBracketHighlight.foreground2": "#9F51B6",
    "editorBracketHighlight.foreground3": "#F7C244",
    "editorBracketHighlight.foreground4": "#F07850",
    "editorBracketHighlight.foreground5": "#9CDD29",
    "editorBracketHighlight.foreground6": "#C497D4",
    "editorBracketHighlight.unexpected Bracket.foreground": "#db6165"
  }

###Opcion 2

 "editor.bracketPairColorization.enabled": true,
  "workbench.colorCustomizations": {
    "editorBracketHighlight.foreground1": "#B48EAD",
    "editorBracketHighlight.foreground2": "#A3BE8C",
    "editorBracketHighlight.foreground3": "#EBCB8B",
    "editorBracketHighlight.foreground4": "#D08770",
    "editorBracketHighlight.foreground5": "#BF616A",
    "editorBracketHighlight.foreground6": "#abb2c0",
    "editorBracketHighlight.unexpected Bracket.foreground": "#db6165"
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment