Last active
March 1, 2019 03:43
-
-
Save Treer/2c7bb3ea2edb5b829d8f3b2cea983bfc to your computer and use it in GitHub Desktop.
Fix visibility of the active tab in VS Code
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
{ | |
"workbench.colorTheme": "Visual Studio Light", | |
"editor.accessibilitySupport": "off", | |
"window.zoomLevel": 0, | |
"workbench.colorCustomizations": { | |
"tab.activeBackground": "#ffffff", | |
"tab.inactiveBackground": "#dcdaff", | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Edit user settings.json to add the "workbench.colorCustomizations"
microsoft/vscode#24586