Add src/main/java/dev/sillyangel/calc/themes/MacDarkBlue.java
Some checks failed
Build the Jar / build (push) Failing after 6s
Some checks failed
Build the Jar / build (push) Failing after 6s
This commit is contained in:
20
src/main/java/dev/sillyangel/calc/themes/MacDarkBlue.java
Normal file
20
src/main/java/dev/sillyangel/calc/themes/MacDarkBlue.java
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
package dev.sillyangel.calc.themes;
|
||||||
|
|
||||||
|
import com.formdev.flatlaf.themes.FlatMacDarkLaf;
|
||||||
|
|
||||||
|
public class MacDarkBlue extends FlatMacDarkLaf {
|
||||||
|
public static final String NAME = "MacDarkBlue";
|
||||||
|
|
||||||
|
public static boolean setup() {
|
||||||
|
return setup( new MacDarkBlue() );
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void installLafInfo() {
|
||||||
|
installLafInfo( NAME, MacDarkBlue.class );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getName() {
|
||||||
|
return NAME;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user