how to decrease the interface brightness of a theme in vscode code example
Example 1: vscode change comments color
"editor.tokenColorCustomizations": {
"comments": "#d4922f"
},
Example 2: change color visual studio code lower line
"workbench.colorCustomizations": {
"statusBar.background" : "#1A1A1A",
"statusBar.noFolderBackground" : "#212121",
"statusBar.debuggingBackground": "#263238"
}
Example 3: 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"
},