Home > Article > Development Tools > How to set code highlight color in vscode

1. File-》Preferences-》settings
2. Enter workbench.colorCustomizations

{
"editor.fontSize": 12,
"editor.minimap.enabled": false,
"window.zoomLevel": 2,
"workbench.colorCustomizations": {
"editor.selectionHighlightBackground": "#ff0000"
}
}


The above is the detailed content of How to set code highlight color in vscode. For more information, please follow other related articles on the PHP Chinese website!