Skip to content

Commit

Permalink
🎨 ColorUtils, for color selection
Browse files Browse the repository at this point in the history
  • Loading branch information
MrGraversen committed Apr 16, 2021
1 parent b521b3d commit 03f5994
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions src/main/java/io/graversen/minecraft/rcon/util/ColorUtils.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package io.graversen.minecraft.rcon.util;

import lombok.experimental.UtilityClass;

@UtilityClass
public class ColorUtils {
@UtilityClass
public static class Qualities {
public static Colors common() {
return Colors.GREEN;
}

public static Colors uncommon() {
return Colors.BLUE;
}

public static Colors epic() {
return Colors.DARK_PURPLE;
}

public static Colors legendary() {
return Colors.YELLOW;
}

public static Colors mythic() {
return Colors.RED;
}
}
}

0 comments on commit 03f5994

Please sign in to comment.