twigg
twigg

Reputation: 3993

How to reset PhpStorm's theme to the default?

I recently installed the following theme (Material Theme UI): https://plugins.jetbrains.com/plugin/8006-material-theme-ui but now it has totally screwed my install and I can't understand the menus.

enter image description here

The editing section is fine but everything else is messed up.

How do I reset PhpStorm to the default?

Upvotes: 2

Views: 980

Answers (3)

Nek
Nek

Reputation: 3105

In my case I used the following couple of command to fix the issue (while PHPStorm/Jetbrains closed)

cd ~/Library/Application Support/JetBrains/PhpStorm2024.2
rm -rf colors/

Colors where reset successfully after that.

Upvotes: 0

Radu
Radu

Reputation: 1177

Another option would be a hard reset on the PhpStorm installation:

  • uninstall phpStorm
  • delete the settings, caches, plugins and logs files (more details about these files (for Win, Linux and Mac) can be found here)

This worked for me.

Be sure to make a list of all plugins you have installed or project(s) preferences you have configured in the global scope, because after the hard reset your IDE will be clean as a whistle (you will lose all your customisations).

Upvotes: -1

lena
lena

Reputation: 93738

It is a known issue of Material Theme UI plugin: http://www.material-theme.com/docs/faq-troubleshooting/#feature-settings. You can follow the advice from the article or try disabling the plugin in Settings | Plugins.

Upvotes: 3

Related Questions