Last active
January 7, 2022 23:54
-
-
Save ThatCoolCoder/7e2970cfebe38d689361323d5aa95ccc to your computer and use it in GitHub Desktop.
VSCode bracket colouring that looks like the extension (paste into settings.json)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"editor.bracketPairColorization.enabled": true, | |
"editor.matchBrackets":"always", | |
"workbench.colorCustomizations": { | |
"editorBracketHighlight.foreground1": "#FFD900", | |
"editorBracketHighlight.foreground2": "#D96FD5", | |
"editorBracketHighlight.foreground3": "#87CEFA", | |
"editorBracketHighlight.unexpectedBracket.foreground": "#ff0000", | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment