I want to use ControlsFX Notifications class, as JavaFX seems to doesn't offer anything like it (or does it?).
For me to use it I want to be able to customize the color of the notification and some other styles. Does anybody have an idea of how I can do that?
Edit:
Through setting Notifications.owner(...)
the notification is styled the same way as my main application, but it is then shown within the main application as well and not at the bottom right corner of my screen.
Notifications.create().title(...).text(..).action(...).position(Pos.BOTTOM_RIGHT).show();
Through using this line in Java and adding following lines at the bottom of my stylesheet it was able to customize the notification.