diff --git a/src/main/java/moe/oko/Kiafumi/util/EmbedUI.java b/src/main/java/moe/oko/Kiafumi/util/EmbedUI.java new file mode 100644 index 0000000..df32a9a --- /dev/null +++ b/src/main/java/moe/oko/Kiafumi/util/EmbedUI.java @@ -0,0 +1,19 @@ +package moe.oko.Kiafumi.util; + +import java.awt.Color; + +public abstract class EmbedUI { + /** + * Shorthand reference for common EmbedBuilder colors & strings. + * I (oko) chose these colors based on the Pantone Color of the year. + */ + + // Strings + public static final String BRAND = "Kiafumi - oko.moe"; + + // Colors + public static final Color SUCCESS = new Color(136,176,75); + public static final Color FAILURE = new Color(255,111,97); + public static final Color INFO = new Color(123,196,196); + +}