package moe.oko.Kiafumi.util; import java.awt.Color; /** * EmbedUI Class * @author oko */ public abstract class EmbedUI { /** * Shorthand reference for common EmbedBuilder colors & strings. * I 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); }