Added EmbedUI

This is a reference class for creating embeds.
It contains common strings & colors for use in commands and listeners.
This commit is contained in:
Anya 2022-03-29 03:33:03 -07:00
parent b8e0b9a1c8
commit e291c7d2d8

View file

@ -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);
}