Skip to content

Instantly share code, notes, and snippets.

@sajithneyo
Created June 25, 2019 14:23
Show Gist options
  • Star 26 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sajithneyo/f7019b070703427ec4acc7a8d6478f0d to your computer and use it in GitHub Desktop.
Save sajithneyo/f7019b070703427ec4acc7a8d6478f0d to your computer and use it in GitHub Desktop.
Settings you need for bracket pair colorizer 2
{
"bracket-pair-colorizer-2.colors": [
"Gold",
"Orchid",
"LightSkyBlue",
"Salmon",
"LawnGreen",
"DarkOrange",
"Cornsilk"
],
"bracket-pair-colorizer-2.highlightActiveScope": true,
"bracket-pair-colorizer-2.activeScopeCSS": [
"borderStyle : solid",
"borderWidth : 1px",
"borderColor : {color}",
"opacity: 0.5"
],
"bracket-pair-colorizer-2.showBracketsInGutter": true,
"bracket-pair-colorizer-2.showBracketsInRuler": true,
"bracket-pair-colorizer-2.scopeLineRelativePosition":true,
"bracket-pair-colorizer-2.scopeLineCSS": [
"borderStyle : solid",
"borderWidth : 1px",
"borderColor : {color}",
"opacity: 0.5"
]
}
@ryderwishart
Copy link

Thank you @sajithneyo. I knew someone would have the colors I didn't know I wanted.

@killshot13
Copy link

Much appreciated @sajithneyo. To loosely quote @ryderwishart, you have provided the colors I didn't know I needed yet.

@albertosales
Copy link

Thank you very, very much.

@furopi
Copy link

furopi commented Mar 14, 2021

Much appreciated!! Thanks! (: 👍

@ramiromoctezuma
Copy link

Thank u 👌.

@Assael1
Copy link

Assael1 commented Apr 20, 2021

Thanks 👍

@sajithneyo
Copy link
Author

Welcome guys 👍

@illuxxury
Copy link

This was really helpful. Thanks Saji!

@abhishekchotaliya
Copy link

Nice +1

@real-yfprojects
Copy link

Do you know the rgb values for the colors?

@ousam-ha
Copy link

ousam-ha commented Sep 10, 2021

// Brackets "editor.bracketPairColorization.enabled": true, "workbench.colorCustomizations": { "editorBracketHighlight.foreground1": "#FFD700", "editorBracketHighlight.foreground2": "#DA70D6", "editorBracketHighlight.foreground3": "#87CEFA", "editorBracketHighlight.foreground4": "#FA8072", "editorBracketHighlight.foreground5": "#7CFC00", "editorBracketHighlight.foreground6": "#FF8C00" }

@real-yfprojects
Copy link

real-yfprojects commented Sep 11, 2021

  "workbench.colorCustomizations": {
   "editorBracketHighlight.foreground1": "#FFD700",
   "editorBracketHighlight.foreground2": "#DA70D6",
   "editorBracketHighlight.foreground3": "#87CEFA",
   "editorBracketHighlight.foreground4": "#FA8072",
   "editorBracketHighlight.foreground5": "#7CFC00",
   "editorBracketHighlight.foreground6": "#FF8C00"
 }

These seem to be the default values. Do they match the colours in this gist?

@ousam-ha
Copy link

  "workbench.colorCustomizations": {
   "editorBracketHighlight.foreground1": "#FFD700",
   "editorBracketHighlight.foreground2": "#DA70D6",
   "editorBracketHighlight.foreground3": "#87CEFA",
   "editorBracketHighlight.foreground4": "#FA8072",
   "editorBracketHighlight.foreground5": "#7CFC00",
   "editorBracketHighlight.foreground6": "#FF8C00"
 }

These seem to be the default values. Do they match the colours in this gist?

Yes.
I used this site - https://rgbcolorcode.com/ to get the RGB's.

@gjuliane
Copy link

"editor.bracketPairColorization.enabled": true,
"workbench.colorCustomizations": {
    "editorBracketHighlight.foreground1": "#FFD700",
    "editorBracketHighlight.foreground2": "#DA70D6",
    "editorBracketHighlight.foreground3": "#87CEFA",
    "editorBracketHighlight.foreground4": "#FA8072",
    "editorBracketHighlight.foreground5": "#7CFC00",
    "editorBracketHighlight.foreground6": "#FF8C00",
    "editorBracketHighlight.unexpectedBracket.foreground": "#db6165"
},

@killshot13
Copy link

killshot13 commented Oct 25, 2021

An opinionated alternative, modified to allow for opacity in each hex code.

"editor.bracketPairColorization.enabled": true,
"workbench.colorCustomizations":  {
	"editorBracketHighlight.foreground1": "#FFD700CC",
	"editorBracketHighlight.foreground2": "#DA70D6CC",
	"editorBracketHighlight.foreground3": "#87CEFACC",
	"editorBracketHighlight.foreground4": "#FA8072CC",
	"editorBracketHighlight.foreground5": "#7CFC00CC",
	"editorBracketHighlight.foreground6": "#FF8C00CC"
},

@aptx113
Copy link

aptx113 commented Mar 13, 2022

Does anyone know how to include angle bracket?

@killshot13
Copy link

Does anyone know how to include angle bracket?

Nope. 🙅🏻‍♂️ I Don't think that's currently even possible.

@luca-bitovi
Copy link

Just what I was looking for, tyvm 🎉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment