package moe.oko.Kiafumi.util; import java.awt.Color; /** * EmbedUI Class * @author oko */ public abstract class EmbedUI { // TODO: restructure & rename class - it has surpassed its scope. /** * 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"; public static final String RESPONSE_PRIVILEGES = " Insufficient privileges."; // 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); }