Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/micheljung/jfx-waitomo-theme
Clean and modern dark theme for JavaFX applications
https://github.com/micheljung/jfx-waitomo-theme
Last synced: about 2 months ago
JSON representation
Clean and modern dark theme for JavaFX applications
- Host: GitHub
- URL: https://github.com/micheljung/jfx-waitomo-theme
- Owner: micheljung
- Created: 2020-06-28T18:01:39.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-19T13:13:07.000Z (over 3 years ago)
- Last Synced: 2024-04-24T12:42:02.266Z (8 months ago)
- Language: CSS
- Size: 98.6 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JFX Waitomo Theme
[![Download](https://api.bintray.com/packages/micheljung/maven/jfx-waitomo-theme/images/download.svg) ](https://bintray.com/micheljung/maven/jfx-waitomo-theme/_latestVersion)
![Screenshot](media/screenshot.png)
## How to use:
```java
public class Main {
public static void main(String[] args) {
DemoApplication.launch(DemoApplication.class, args);
}public static class DemoApplication extends Application {
@Override
public void start(Stage primaryStage) {
Scene scene = new Scene(new StackPane());
WaitomoTheme.apply(scene);primaryStage.setScene(scene);
primaryStage.show();
}
}
}
```## Get It Now
Get it via https://bintray.com/micheljung/maven/jfx-waimoto-theme/
```
implementation 'ch.micheljung.waitomo:jfx-waitomo-theme:0.2.0'
```## Important
Not all components have been styled yet.
# Other Projects
Works great with [fxstage](https://github.com/micheljung/fxstage)!