Is there a way to detect the current theme? Erik Pragt 创建于 2014年11月22日 09:03 Question: is it possible to detect which theme a user is running, and specifically, if it's Darcula or not? If so, how can I do this?Thanks,Erik
Ah, never mind, it's just a Swing thing: you can detect it using UIManager.getLookAndFeel().
You should use com.intellij.util.ui.UIUtil#isUnderDarcula
Ah, nice, didn't know that one. Thanks!!