Changing the font of the entire application to 'Ubuntu Light' gives me a great look. I also tried some other fonts, but they worsened the look.
Step 1: Add the following style to the application.css file.
.text { -fx-font-family: "Ubuntu Light"; }
Step 2: Apply the style to the parent scene.
scene.getStylesheets().add(getClass().getResource("application.css").toExternalForm());
source share