Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)!