Browse Source

Update README.md

pull/15/head
Jannis Weis 5 years ago committed by GitHub
parent
commit
cfbdc31188
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 21
      README.md

21
README.md

@ -16,6 +16,23 @@ Darcula Theme | IntelliJ Theme
Solarized Dark Theme | Solarized Light Theme
# Usage & Features
You can either use the current build from [releases](https://github.com/weisJ/darklaf/releases) or the the [bin folder](https://github.com/weisJ/darklaf/tree/master/bin). These binaries already include a stripped down version of all dependecies.
This project is available on Maven Central:
## Maven
````xml
<dependency>
<groupId>com.github.weisj</groupId>
<artifactId>darklaf</artifactId>
<version>1.3</version>
</dependency>
````
## Gradle
````
implementation 'com.github.weisj:darklaf:1.3'
````
The LookAndFeel can be easily installed using the 'LafManager'
````java
@ -26,7 +43,7 @@ or by any other default method of setting the LaF of your swing application.
## Example
````java
import com.weis.darklaf.LafManager;
import com.github.weisj.darklaf.LafManager;
import javax.swing.*;
import java.awt.*;
@ -58,4 +75,4 @@ property of the component.
//Todo: list of properties
This LookAndFeel supports custom window decorations (only Windows at this point). In contrast to most other LaFs the native window behaviour is not compromised giving a seamless experience that still looks native.
This LookAndFeel supports custom window decorations (only Windows at this point). In contrast to most other LaFs the native window behaviour is not compromised giving a seamless experience that still looks native.

Loading…
Cancel
Save