visual studio code – Does the “editorWhitespace.foreground” workbench.colorCustomizations setting in VSCode actually work? – Stack Overflow
Posted by jpluimers on 2020/01/16
[WayBack] visual studio code – Does the “editorWhitespace.foreground” workbench.colorCustomizations setting in VSCode actually work? – Stack Overflow
Yes, it does. But after reading [WayBack] vscode-docs/theme-color-reference.md at master · Microsoft/vscode-docs · GitHub: Editor Colors or [WayBack] Visual Studio Code Theme Color Reference you might want to put it in the config straight like this:
see the editor white spaces, enable Toggle Render Whitespace.
editorWhitespace.foreground
: Color of whitespace characters in the editor.
However, you need to embed it like this:
"workbench.colorCustomizations": { "editorWhitespace.foreground": "#333", "editorIndentGuide.background": "#333" }
The embedding makes it work.
References:
- [WayBack] Setting to change the color and opacity of whitespace characters when made visible… · Issue #25956 · Microsoft/vscode · GitHub
- [WayBack] Color customization color id changes · Microsoft/vscode Wiki · GitHub
–jeroen
Leave a Reply