Darklaf - A themeable swing Look and Feel based on Darcula-Laf
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Vladimir Sitnikov fa3c6a5af5 Add GitHub Actions CI for pull request testing 5 years ago
.github/workflows Add GitHub Actions CI for pull request testing 5 years ago
gradle/wrapper Cleanup 5 years ago
img Create file_chooser_combined.png 5 years ago
licenses Include licenses in jar. 5 years ago
src Switched to newer version of svgSalamander. 5 years ago
.gitignore Fixed titleBar icon size. 5 years ago
LICENSE moved and updates license 5 years ago
README.md Add GitHub Actions CI for pull request testing 5 years ago
build.gradle Switched to newer version of svgSalamander. 5 years ago
build_x64.gradle Switched to newer version of svgSalamander. 5 years ago
build_x86.gradle Switched to newer version of svgSalamander. 5 years ago
darklaf.iml Renamed to conform new group id. 5 years ago
gradlew Add GitHub Actions CI for pull request testing 5 years ago
gradlew.bat General functioning support for window decorations on windows. 5 years ago
pom.xml new build 5 years ago
settings.gradle Fixed undesired behaviour when the TabbedPane becomes empty through a 5 years ago

README.md

Darklaf - A Darcula Look and Feel

CI Status Maven Central

This project is based on the darcula look and feel for Swing.

Screenshots

Darcula Theme IntelliJ Theme
Darcula Theme IntelliJ Theme
Solarized Dark Theme Solarized Light Theme
Solarized Dark Theme Solarized Light Theme

Usage & Features

The LaF is compatible with Java >=1.8 (you need >=1.9 to get proper scaling). You can either use the current build from releases or the the bin folder. These binaries already include a stripped down version of all dependecies.

A list of all features can be found here.

This project is available on Maven Central:

Maven

<dependency>
  <groupId>com.github.weisj</groupId>
  <artifactId>darklaf</artifactId>
  <version>[1.3.3.4,)</version>
</dependency>

Gradle

implementation 'com.github.weisj:darklaf:[1.3.3.4,)'

Installation

The LookAndFeel can be easily installed using the 'LafManager'

LafManager.install(); //For default theme (IntelliJ)
LafManager.install(new DarculaTheme()); //Specify the used theme.

or by using the UIManager

LafManager.setTheme(new DarculaTheme());
UIManager.setLookAndFeel(DarkLaf.class.getCanonicalName());

Example

import com.github.weisj.darklaf.LafManager;
import javax.swing.*;
import java.awt.*;

public class DarklafDemo {

    public static void main(final String[] args) {
         SwingUtilities.invokeLater(() -> {
            LafManager.install();

            JFrame frame = new JFrame("Darklaf - A themeable LaF for Swing");
            frame.setSize(600, 400);

            JButton button = new JButton("Click here!");

            JPanel content = new JPanel();
            content.add(button);

            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setContentPane(content);
            frame.setVisible(true);
        });
    }
}

All custom component-variants and settings can be enabled by setting the appropriate client property of the component. They can be found here.

This LookAndFeel supports custom window decorations (only on 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.

Build

To build the project replace the build.gradle script with the one fitting your platform i.e.

  • You only have a x86 toolchain installation -> build_x86.gradle
  • You only have a x64 toolchain installation -> build_x64.gradle
  • You have a 86x_64x_multilib toolchain installation -> build.gradle

Contribute

Here is a list of things that currently are not finished or need refinement. This list is a work in progress and being updated regulary. If you find any problems with the LaF feel free to submit an issue:

License

This project is licensed under the MIT license.