I want to know if there is some way to get macOS Mojave style Dark Mode in a swing application in Java?
I want to get macOS Mojave Style Dark Mode on a JFrame in a Java Swing Application.
Please let me know.
Thanks
Asrar Bashir Sunge
Advertisement
Answer
I guess, you might give it a try to use Darcula:
https://github.com/Revivius/nb-darcula
https://github.com/bulenkov/Darcula
JavaScript
x
import com.bulenkov.darcula.*;
BasicLookAndFeel darculaLookAndFeel = new DarculaLaf();
try {
UIManager.setLookAndFeel(darculaLookAndFeel);
} catch (UnsupportedLookAndFeelException ex) {
// ups!
}