Last active
June 14, 2021 22:38
-
-
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
This file contains 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.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