JavaFX darcula theme.
Maven
<dependency>
<groupId>com.github.mouse0w0</groupId>
<artifactId>darculafx</artifactId>
<version>11.0.0</version>
</dependency>
Gradle
repositories {
mavenCentral()
}
dependencies {
implementation 'com.github.mouse0w0:darculafx:11.0.0'
}
You can either apply the style to the scene…
DarculaFX.applyDarculaStyle(scene);
…or apply the style to specific components.
DarculaFX.applyDarculaStyle(button);