Roboin Blog

How to restore VS Code’s previous UI design

Microsoft is testing a new UI design for VS Code, so you may see a new interface that differs from the previous design depending on your environment. The new UI places each element inside a rounded container. I like the design, but it has divided opinion among users.

Microsoft still considers the new VS Code design experimental, so you can turn it on or off in the settings.

Screenshot of VS Code’s traditional UI design
Previous VS Code design
Screenshot of VS Code’s new UI design
New VS Code design

VS Code describes the new design in its settings as follows:

Advertisement

the side bars and bottom panel are shown as floating cards with rounded corners and gaps, and a set of refreshed workbench styles is applied, matching the Agents window design.

How to restore the previous VS Code design

Microsoft has not rolled out the new VS Code design to all users, so you may see either the old or new design depending on your environment.

If Microsoft has rolled out the new design to your environment, you can restore the previous design by setting workbench.experimental.modernUI to false.

Change the setting from the GUI

  1. Open the VS Code settings

  2. Enter "modern" in the settings search bar, then turn off [Workbench > Experimental: Modern UI]

    Screenshot of the VS Code settings screen with [Workbench > Experimental: Modern UI] highlighted by a red border
  3. You’ll see the previous UI design again

Change the setting in settings.json

  1. Open the VS Code settings.json file

  2. Set workbench.experimental.modernUI to false.

    settings.json
    {
    // ...existing settings
    "workbench.experimental.modernUI": false
    }
  3. You’ll see the previous UI design again

Share this article

Follow us for updates

Adding us to your preferred sources on Google makes it easier to find our articles on Google. Also, be sure to follow us on X and our RSS feed.

Add as a preferred source on GoogleAdd as a preferred source on Google
著者のアイコン画像

I've been using JavaScript more than my native language since birth. I am nowhere and everywhere on the internet.

I build web apps and browser extensions in TypeScript as a web frontend programmer. I released Shadowban Scanner, a tool that detects shadowbans on X, and Restore Link Card, a tool that brings back link cards. Media outlets in Japan and abroad covered both tools. For iGEM 2023, I built the Wiki for Team Japan-United and helped the team win the Grand Prize. On my blog, I cover news about X and social media, test and troubleshoot bugs, and share frontend development insights.