Skip to content

Instantly share code, notes, and snippets.

@xeoncross
Last active June 14, 2021 22:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xeoncross/308c7719636631904501d827d4f708f6 to your computer and use it in GitHub Desktop.
Save xeoncross/308c7719636631904501d827d4f708f6 to your computer and use it in GitHub Desktop.
Changes to https://github.com/tonsky/vscode-theme-alabaster Alabaster theme to make more text black
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "golang.go",
"workbench.colorTheme": "Alabaster",
"settingsSync.ignoredExtensions": [
],
"workbench.colorCustomizations": {
// "editor.background": "#F1F1F1",
},
"editor.tokenColorCustomizations": {
"[Alabaster]": {
"textMateRules": [{
"scope": "support.class",
"settings": {
"foreground": "#000"
}
},
{
"scope": "entity.name",
"settings": {
"foreground": "#000"
}
}]
}
},
"eslint.format.enable": true,
"aws.profile": "profile:default",
"editor.semanticTokenColorCustomizations": null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment