Answers for "how can i change the color of the selection through mouse in fthe vscode"

0

change color visual studio code lower line

"workbench.colorCustomizations": {
    "statusBar.background" : "#1A1A1A",
    "statusBar.noFolderBackground" : "#212121",
    "statusBar.debuggingBackground": "#263238"
}
Posted by: Guest on November-03-2020
-1

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"
},
Posted by: Guest on December-22-2020

Code answers related to "how can i change the color of the selection through mouse in fthe vscode"

Browse Popular Code Answers by Language