Home > Enterprise >  How can I hide the blue border in visual stdio code?
How can I hide the blue border in visual stdio code?

Time:09-27

When I click a component in the visual stdio code interface, a blue border will appear around the component. How can I hide the blue border.enter image description here

CodePudding user response:

Open your settings.json file and add the below property with color code (along with opacity level) :

"workbench.colorCustomizations":{
    "focusBorder":"#ff000000"
},

Please note the 2 extra 0's at the end in the color code. These are to set the opacity level. In this case its set to transparent which is what you want.

So now you won't be seeing any border around any component.

EDIT 1 : START

Elaborating on rioV8's comment: In case you want to customize the border for individual components, you can do so with help of rich configuration settings for color theme provided by the VSCode.

EDIT 2 : END

  • Related