Advertisement
Guest User

Bracket Highlighting VS Code

a guest
May 26th, 2025
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.74 KB | None | 0 0
  1. // Bracket Highlighting
  2.     "editor.bracketPairColorization.enabled": false,
  3.     "editor.bracketPairColorization.minimumLineSpan": 2,
  4.     "editor.guides.bracketPairs": "active",
  5.     "workbench.colorCustomizations": {
  6.         "errorLens.hintForeground": "#ff600A1",
  7.         "errorLens.hintBackground": "#ffc60003",
  8.         "errorLens.errorBackground": "#ff000005",
  9.         // Custom Bracket Colors
  10.         "editorBracketHighlight.foreground1": "#FFA500",
  11.         "editorBracketHighlight.foreground2": "#FF69B4",
  12.         "editorBracketHighlight.foreground3": "#00FF7F",
  13.         "editorBracketHighlight.foreground4": "#00FFFF",
  14.         "editorBracketHighlight.foreground5": "#FFD700",
  15.         "editorBracketHighlight.foreground6": "#FF00FF"
  16.     },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement