Article
How to customize selection background color in visual studio code
If you want to customize the selection of background color in your favourite visual studio code. You can follow the following steps
step 1:π Open your vscode and click the manage icon on the bottom-left side of your vscode
step 2: πClick the setting option or press (ctrl+, for windows users)
step 3: π Click the open setting.json icon shows as the bellow picture
step 4: πWrite the following code in your setting.json file
copy and paste...
"editor.selectionHighlightBackground": "#7b7b7c4b",
"editor.wordHighlightBackground": "#7b7b7c57",
"editor.selectionBackground": "#969b9a2c"
ππ¬