visual studio code background color code example
Example 1: change color visual studio code lower line
"workbench.colorCustomizations": {
"statusBar.background" : "#1A1A1A",
"statusBar.noFolderBackground" : "#212121",
"statusBar.debuggingBackground": "#263238"
}
Example 2: How to change color VSCode
Install Material Theme by Mattia Astorino —> use "Set Color Theme"
Example 3: change vs code title bar theme color
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#ffffff",
"titleBar.activeForeground": "#000000",
}
Example 4: how can i change the color of the selection through mouse in fthe vscode
Add the following lines into "Editor: Token Color Customizations" setting, inside settings.json file.
"workbench.colorCustomizations": {
"editor.selectionBackground": "#135564",
"editor.selectionHighlightBackground": "#135564"
},