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:
parent
b8e0b9a1c8
commit
e291c7d2d8
19
src/main/java/moe/oko/Kiafumi/util/EmbedUI.java
Normal file
19
src/main/java/moe/oko/Kiafumi/util/EmbedUI.java
Normal 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);
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue