A Java Look & Feel for Swing application, with similar style to web pages.
You can add maven dependency using jitpack.io repository in pom.xml file
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>...adding the WebLookAndFeel dependency
<dependency>
<groupId>com.github.margelperetto</groupId>
<artifactId>WebLookAndFeel</artifactId>
<version>master-SNAPSHOT</version>
</dependency>..and finally, settting the LAF in your main application method
public static void main(String[] args) throws Exception {
UIManager.setLookAndFeel(new WebLookAndFeel());
new AppFrame().setVisible(true);
}To run an example application, visit https://github.com/margelperetto/TestWebLookAndFeel
