I have installed Material Theme UI and it made my IDE blackish. Later I decided to remove and and removed plugin. Unfortunately, this didn't give default colors back, some parts of IDE, for example Project pane, remained blackish.
How ro recover?
How to remove material theme from IntelliJ / PyCharm?
The File Status Colors feature is also a feature that sticks outside of the realm of the plugin as it modifies the IDE itself. Therefore when uninstalling/disabling the plugin the colors will stuck.
If you want to reset to the default colors, open the Settings at Version Control -> File Status Colors in 2017.3+. In previous versions, you will need to go to the config directory and delete the _@user_Darcula.icls color scheme manually.
Reference: https://github.com/ChrisRM/material-theme-jetbrains#file-colors-stuck-after-uninstallation
Unfortunately whatever I was doing from the settings, I've couldn't get rid of that theme. So I uninstalled the program and reinstalled it again without material theme. Hope there will be better solution.
None of these worked for me as an acceptable solution. So here is what I figured out:
At this point most changes were back to default, but some things like colour of current tab, error highlights, modified files etc were still not back to usual. So I followed the advice of deleting
config
and things returned to normal. But with this option you lose everything, even the installed plugins. And worst thing was, I was using a settings repository to sync settings, few minutes later the colours were back! So I did a diff with older config directory and then agit log
revealed that these files are the culprits.Delete these 4 files from this path:
.IntelliJIdea<version>/config/settingsRepository/repository/
Then do a
git commit
andgit push
to ensure these are synced to your repository. And finally theme was back to normal!Tested with intellij 2018.3 go to settings->Type material then untick the material theme after that restart ide should fix the issue.