Home > Article > Development Tools > How to change the color highlight of selected font in vscode
How to change the color highlight of the selected font in vscode:
Find workbench.colorCustomizations in setting.json.
You can modify the selected font color highlight in workbench.colorCustomizations.
"workbench.colorCustomizations": { "editor.selectionBackground": "#d1d1c6", "editor.selectionHighlightBackground": "#c5293e" }
The results are as follows
Recommended learning: vscode tutorial
The above is the detailed content of How to change the color highlight of selected font in vscode. For more information, please follow other related articles on the PHP Chinese website!