Skip to content

Instantly share code, notes, and snippets.

@jmcastagnetto
Created September 20, 2021 15:59
Show Gist options
  • Save jmcastagnetto/7190427a1fb62d4526ce5c1c29cc4d29 to your computer and use it in GitHub Desktop.
Save jmcastagnetto/7190427a1fb62d4526ce5c1c29cc4d29 to your computer and use it in GitHub Desktop.
Changes in VSCode "settings.json" to get "rainbow brackets" with Okabe-Ito colorblind-friendly colors in light themes
// compatible with VSCode version 1.60.1 (or later)
"workbench.colorTheme": "Default Light+",
"editor.bracketPairColorization.enabled": true,
"workbench.colorCustomizations": {
// Okabe-Ito colors (colorblind-friendly)
"editorBracketHighlight.foreground1": "#000000", // black
"editorBracketHighlight.foreground2": "#e69f00", // orange
"editorBracketHighlight.foreground3": "#56b4e9", // sky blue
"editorBracketHighlight.foreground4": "#009e73", // bluish green
"editorBracketHighlight.foreground5": "#0072b2", // blue
"editorBracketHighlight.foreground6": "#d55e00" // vermillion
}
@jmcastagnetto
Copy link
Author

image

@jmcastagnetto
Copy link
Author

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