From what I'm reading it's possible to write JavaFX2 skins via CSS. But I can't seem to find any complete examples of this, a few tutorials here and there, but that's it. Specifically I'm looking for a "dark" skin for JavaFX2. Any ideas of where to find pre-made skins?
相关问题
- How to properly use Weld in JavaFX 2 application?
- JavaFX, MediaPlayer - volume trouble! Why the volu
- JavaFX 2 ComboBox setValue() does not set CB text
- How to enable HTML5 local storage in javafx WebVie
- JavaFX VBox and HBox layouts
相关文章
- How to change the color of pane in javafx?
- TableView has more columns than specified
- How to merge cells in JavaFX Scene builder?
- JavaFX: Tested/confirmed hardware (GPU) accelerati
- How to work with canvas and text in javafx
- How to center/wrap/truncate Text to fit within Rec
- JavaFX TableView is not updating
- RMI JavaFX 2 - NotSerializableException error
If you read modena.css you'll see an explanation where colors values are derived from
You can just add some css to .root to override the base colors, here's some of theirs.
Just doing
.root{-fx-base:#000000;}
makes a readable dark theme that could use some tweaking.