How to change the background in vscode?
How to change vscode background
First download the plug-in from the store
Then add the following code to setting.json
"background.customImages": [ "file:///D:/独角兽.jpg" ], "background.style": { "content": "''", "pointer-events": "none", "position": "absolute", //图片位置 "width": "100%", "height": "100%", "z-index": "99999", "background.repeat": "no-repeat", "background-size": "100%,100%", //图片大小 "opacity": 0.05 //透明度 }, "background.useFront": true, "background.useDefault": false //这里如果为true,则自己设置的图片不起作用,改为false,图片才能出来哦
Recommended related articles and tutorials: vscode tutorial
The above is the detailed content of How to change the background in vscode. For more information, please follow other related articles on the PHP Chinese website!