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