I installed the VS Code Remote Development extensions but the green ><
icon in the left of the status bar doesn't look good with my preferred theme. How do I change its color?
Press Control + Shift + P when you just open Visual Studio Code and type "open settings(UI)" and search for window. titleBarStyle and change the option from native to custom so that you can restore the colour of status bar from white to black.
The reason for the difference is VS Code will display a blue status bar when you open a folder. At all other times it will display a purple status bar.
The ><
icon is the Remote Window Indicator. Color themes can customize its color using the statusBarItem.remoteBackground
and statusBarItem.remoteForeground
theme colors
You can also override the color using the workbench.colorCustomizations
setting in VS Code:
"workbench.colorCustomizations": {
"statusBarItem.remoteBackground": "#5a34a0",
"statusBarItem.remoteForeground": "#ccc"
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With