|
|
|
@@ -1,17 +1,15 @@
|
|
|
|
|
package net.axay.kspigot.chat;
|
|
|
|
|
|
|
|
|
|
import net.md_5.bungee.api.ChatColor;
|
|
|
|
|
|
|
|
|
|
import java.awt.*;
|
|
|
|
|
import net.kyori.adventure.text.format.TextColor;
|
|
|
|
|
import net.kyori.adventure.text.format.TextDecoration;
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
|
public class KColors {
|
|
|
|
|
public static final ChatColor MAGIC = ChatColor.MAGIC;
|
|
|
|
|
public static final ChatColor BOLD = ChatColor.BOLD;
|
|
|
|
|
public static final ChatColor STRIKETHROUGH = ChatColor.STRIKETHROUGH;
|
|
|
|
|
public static final ChatColor UNDERLINE = ChatColor.UNDERLINE;
|
|
|
|
|
public static final ChatColor ITALIC = ChatColor.ITALIC;
|
|
|
|
|
public static final ChatColor RESET = ChatColor.RESET;
|
|
|
|
|
public static final TextDecoration MAGIC = TextDecoration.OBFUSCATED;
|
|
|
|
|
public static final TextDecoration BOLD = TextDecoration.BOLD;
|
|
|
|
|
public static final TextDecoration STRIKETHROUGH = TextDecoration.STRIKETHROUGH;
|
|
|
|
|
public static final TextDecoration UNDERLINE = TextDecoration.UNDERLINED;
|
|
|
|
|
public static final TextDecoration ITALIC = TextDecoration.ITALIC;
|
|
|
|
|
|
|
|
|
|
// DEFAULT COLORS
|
|
|
|
|
|
|
|
|
@@ -19,77 +17,77 @@ public class KColors {
|
|
|
|
|
* #0000AA
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#0000AA"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKBLUE = ChatColor.DARK_BLUE;
|
|
|
|
|
public static final TextColor DARKBLUE = TextColor.color(0, 0, 170);
|
|
|
|
|
/**
|
|
|
|
|
* #00AA00
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#00AA00"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKGREEN = ChatColor.DARK_GREEN;
|
|
|
|
|
public static final TextColor DARKGREEN = TextColor.color(0, 170, 0);
|
|
|
|
|
/**
|
|
|
|
|
* #00AAAA
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#00AAAA"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKAQUA = ChatColor.DARK_AQUA;
|
|
|
|
|
public static final TextColor DARKAQUA = TextColor.color(0, 170, 170);
|
|
|
|
|
/**
|
|
|
|
|
* #AA0000
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#AA0000"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKRED = ChatColor.DARK_RED;
|
|
|
|
|
public static final TextColor DARKRED = TextColor.color(170, 0, 0);
|
|
|
|
|
/**
|
|
|
|
|
* #AA00AA
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#AA00AA"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKPURPLE = ChatColor.DARK_PURPLE;
|
|
|
|
|
public static final TextColor DARKPURPLE = TextColor.color(170, 0, 170);
|
|
|
|
|
/**
|
|
|
|
|
* #FFAA00
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#FFAA00"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor GOLD = ChatColor.GOLD;
|
|
|
|
|
public static final TextColor GOLD = TextColor.color(255, 170, 0);
|
|
|
|
|
/**
|
|
|
|
|
* #AAAAAA
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#AAAAAA"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor GRAY = ChatColor.GRAY;
|
|
|
|
|
public static final TextColor GRAY = TextColor.color(170, 170, 170);
|
|
|
|
|
/**
|
|
|
|
|
* #555555
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#555555"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKGRAY = ChatColor.DARK_GRAY;
|
|
|
|
|
public static final TextColor DARKGRAY = TextColor.color(85, 85, 85);
|
|
|
|
|
/**
|
|
|
|
|
* #5555FF
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#5555FF"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor BLUE = ChatColor.BLUE;
|
|
|
|
|
public static final TextColor BLUE = TextColor.color(85, 85, 255);
|
|
|
|
|
/**
|
|
|
|
|
* #55FF55
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#55FF55"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor GREEN = ChatColor.GREEN;
|
|
|
|
|
public static final TextColor GREEN = TextColor.color(85, 255, 85);
|
|
|
|
|
/**
|
|
|
|
|
* #55FFFF
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#55FFFF"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor AQUA = ChatColor.AQUA;
|
|
|
|
|
public static final TextColor AQUA = TextColor.color(85, 255, 255);
|
|
|
|
|
/**
|
|
|
|
|
* #FF5555
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#FF5555"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor RED = ChatColor.RED;
|
|
|
|
|
public static final TextColor RED = TextColor.color(255, 85, 85);
|
|
|
|
|
/**
|
|
|
|
|
* #FF55FF
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#FF55FF"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTPURPLE = ChatColor.LIGHT_PURPLE;
|
|
|
|
|
public static final TextColor LIGHTPURPLE = TextColor.color(255, 85, 255);
|
|
|
|
|
/**
|
|
|
|
|
* #FFFF55
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#FFFF55"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor YELLOW = ChatColor.YELLOW;
|
|
|
|
|
public static final TextColor YELLOW = TextColor.color(255, 255, 85);
|
|
|
|
|
/**
|
|
|
|
|
* #FFFFFF
|
|
|
|
|
* <div style="border:1px solid black;width:120px;height:120px;background-color:#FFFFFF"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor WHITE = ChatColor.WHITE;
|
|
|
|
|
public static final TextColor WHITE = TextColor.color(255, 255, 255);
|
|
|
|
|
|
|
|
|
|
// ADDITIONAL COLORS
|
|
|
|
|
|
|
|
|
@@ -97,640 +95,640 @@ public class KColors {
|
|
|
|
|
* #F0F8FF
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#F0F8FF"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor ALICEBLUE = ChatColor.of(new Color(0.9411765f, 0.972549f, 1.0f));
|
|
|
|
|
public static final TextColor ALICEBLUE = TextColor.color(240, 248, 255);
|
|
|
|
|
/**
|
|
|
|
|
* #FAEBD7
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FAEBD7"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor ANTIQUEWHITE = ChatColor.of(new Color(0.98039216f, 0.92156863f, 0.84313726f));
|
|
|
|
|
public static final TextColor ANTIQUEWHITE = TextColor.color(250, 235, 215);
|
|
|
|
|
/**
|
|
|
|
|
* #7FFFD4
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#7FFFD4"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor AQUAMARINE = ChatColor.of(new Color(0.49803922f, 1.0f, 0.83137256f));
|
|
|
|
|
public static final TextColor AQUAMARINE = TextColor.color(127, 255, 212);
|
|
|
|
|
/**
|
|
|
|
|
* #F0FFFF
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#F0FFFF"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor AZURE = ChatColor.of(new Color(0.9411765f, 1.0f, 1.0f));
|
|
|
|
|
public static final TextColor AZURE = TextColor.color(240, 255, 255);
|
|
|
|
|
/**
|
|
|
|
|
* #F5F5DC
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#F5F5DC"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor BEIGE = ChatColor.of(new Color(0.9607843f, 0.9607843f, 0.8627451f));
|
|
|
|
|
public static final TextColor BEIGE = TextColor.color(245, 245, 220);
|
|
|
|
|
/**
|
|
|
|
|
* #FFE4C4
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFE4C4"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor BISQUE = ChatColor.of(new Color(1.0f, 0.89411765f, 0.76862746f));
|
|
|
|
|
public static final TextColor BISQUE = TextColor.color(255, 228, 196);
|
|
|
|
|
/**
|
|
|
|
|
* #000000
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#000000"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor BLACK = ChatColor.of(new Color(0.0f, 0.0f, 0.0f));
|
|
|
|
|
public static final TextColor BLACK = TextColor.color(0, 0, 0);
|
|
|
|
|
/**
|
|
|
|
|
* #FFEBCD
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFEBCD"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor BLANCHEDALMOND = ChatColor.of(new Color(1.0f, 0.92156863f, 0.8039216f));
|
|
|
|
|
public static final TextColor BLANCHEDALMOND = TextColor.color(255, 235, 205);
|
|
|
|
|
/**
|
|
|
|
|
* #8A2BE2
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#8A2BE2"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor BLUEVIOLET = ChatColor.of(new Color(0.5411765f, 0.16862746f, 0.8862745f));
|
|
|
|
|
public static final TextColor BLUEVIOLET = TextColor.color(138, 43, 226);
|
|
|
|
|
/**
|
|
|
|
|
* #A52A2A
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#A52A2A"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor BROWN = ChatColor.of(new Color(0.64705884f, 0.16470589f, 0.16470589f));
|
|
|
|
|
public static final TextColor BROWN = TextColor.color(165, 42, 42);
|
|
|
|
|
/**
|
|
|
|
|
* #DEB887
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#DEB887"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor BURLYWOOD = ChatColor.of(new Color(0.87058824f, 0.72156864f, 0.5294118f));
|
|
|
|
|
public static final TextColor BURLYWOOD = TextColor.color(222, 184, 135);
|
|
|
|
|
/**
|
|
|
|
|
* #5F9EA0
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#5F9EA0"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor CADETBLUE = ChatColor.of(new Color(0.37254903f, 0.61960787f, 0.627451f));
|
|
|
|
|
public static final TextColor CADETBLUE = TextColor.color(95, 158, 160);
|
|
|
|
|
/**
|
|
|
|
|
* #7FFF00
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#7FFF00"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor CHARTREUSE = ChatColor.of(new Color(0.49803922f, 1.0f, 0.0f));
|
|
|
|
|
public static final TextColor CHARTREUSE = TextColor.color(127, 255, 0);
|
|
|
|
|
/**
|
|
|
|
|
* #D2691E
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#D2691E"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor CHOCOLATE = ChatColor.of(new Color(0.8235294f, 0.4117647f, 0.11764706f));
|
|
|
|
|
public static final TextColor CHOCOLATE = TextColor.color(210, 105, 30);
|
|
|
|
|
/**
|
|
|
|
|
* #FF7F50
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FF7F50"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor CORAL = ChatColor.of(new Color(1.0f, 0.49803922f, 0.3137255f));
|
|
|
|
|
public static final TextColor CORAL = TextColor.color(255, 127, 80);
|
|
|
|
|
/**
|
|
|
|
|
* #6495ED
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#6495ED"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor CORNFLOWERBLUE = ChatColor.of(new Color(0.39215687f, 0.58431375f, 0.92941177f));
|
|
|
|
|
public static final TextColor CORNFLOWERBLUE = TextColor.color(100, 149, 237);
|
|
|
|
|
/**
|
|
|
|
|
* #FFF8DC
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFF8DC"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor CORNSILK = ChatColor.of(new Color(1.0f, 0.972549f, 0.8627451f));
|
|
|
|
|
public static final TextColor CORNSILK = TextColor.color(255, 248, 220);
|
|
|
|
|
/**
|
|
|
|
|
* #DC143C
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#DC143C"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor CRIMSON = ChatColor.of(new Color(0.8627451f, 0.078431375f, 0.23529412f));
|
|
|
|
|
public static final TextColor CRIMSON = TextColor.color(220, 20, 60);
|
|
|
|
|
/**
|
|
|
|
|
* #00FFFF
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#00FFFF"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor CYAN = ChatColor.of(new Color(0.0f, 1.0f, 1.0f));
|
|
|
|
|
public static final TextColor CYAN = TextColor.color(0, 255, 255);
|
|
|
|
|
/**
|
|
|
|
|
* #008B8B
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#008B8B"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKCYAN = ChatColor.of(new Color(0.0f, 0.54509807f, 0.54509807f));
|
|
|
|
|
public static final TextColor DARKCYAN = TextColor.color(0, 139, 139);
|
|
|
|
|
/**
|
|
|
|
|
* #B8860B
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#B8860B"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKGOLDENROD = ChatColor.of(new Color(0.72156864f, 0.5254902f, 0.043137256f));
|
|
|
|
|
public static final TextColor DARKGOLDENROD = TextColor.color(184, 134, 11);
|
|
|
|
|
/**
|
|
|
|
|
* #BDB76B
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#BDB76B"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKKHAKI = ChatColor.of(new Color(0.7411765f, 0.7176471f, 0.41960785f));
|
|
|
|
|
public static final TextColor DARKKHAKI = TextColor.color(189, 183, 107);
|
|
|
|
|
/**
|
|
|
|
|
* #8B008B
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#8B008B"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKMAGENTA = ChatColor.of(new Color(0.54509807f, 0.0f, 0.54509807f));
|
|
|
|
|
public static final TextColor DARKMAGENTA = TextColor.color(139, 0, 139);
|
|
|
|
|
/**
|
|
|
|
|
* #556B2F
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#556B2F"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKOLIVEGREEN = ChatColor.of(new Color(0.33333334f, 0.41960785f, 0.18431373f));
|
|
|
|
|
public static final TextColor DARKOLIVEGREEN = TextColor.color(85, 107, 47);
|
|
|
|
|
/**
|
|
|
|
|
* #FF8C00
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FF8C00"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKORANGE = ChatColor.of(new Color(1.0f, 0.54901963f, 0.0f));
|
|
|
|
|
public static final TextColor DARKORANGE = TextColor.color(255, 140, 0);
|
|
|
|
|
/**
|
|
|
|
|
* #9932CC
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#9932CC"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKORCHID = ChatColor.of(new Color(0.6f, 0.19607843f, 0.8f));
|
|
|
|
|
public static final TextColor DARKORCHID = TextColor.color(153, 50, 204);
|
|
|
|
|
/**
|
|
|
|
|
* #E9967A
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#E9967A"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKSALMON = ChatColor.of(new Color(0.9137255f, 0.5882353f, 0.47843137f));
|
|
|
|
|
public static final TextColor DARKSALMON = TextColor.color(233, 150, 122);
|
|
|
|
|
/**
|
|
|
|
|
* #8FBC8F
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#8FBC8F"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKSEAGREEN = ChatColor.of(new Color(0.56078434f, 0.7372549f, 0.56078434f));
|
|
|
|
|
public static final TextColor DARKSEAGREEN = TextColor.color(143, 188, 143);
|
|
|
|
|
/**
|
|
|
|
|
* #483D8B
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#483D8B"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKSLATEBLUE = ChatColor.of(new Color(0.28235295f, 0.23921569f, 0.54509807f));
|
|
|
|
|
public static final TextColor DARKSLATEBLUE = TextColor.color(72, 61, 139);
|
|
|
|
|
/**
|
|
|
|
|
* #2F4F4F
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#2F4F4F"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKSLATEGRAY = ChatColor.of(new Color(0.18431373f, 0.30980393f, 0.30980393f));
|
|
|
|
|
public static final TextColor DARKSLATEGRAY = TextColor.color(47, 79, 79);
|
|
|
|
|
/**
|
|
|
|
|
* #00CED1
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#00CED1"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKTURQUOISE = ChatColor.of(new Color(0.0f, 0.80784315f, 0.81960785f));
|
|
|
|
|
public static final TextColor DARKTURQUOISE = TextColor.color(0, 206, 209);
|
|
|
|
|
/**
|
|
|
|
|
* #9400D3
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#9400D3"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DARKVIOLET = ChatColor.of(new Color(0.5803922f, 0.0f, 0.827451f));
|
|
|
|
|
public static final TextColor DARKVIOLET = TextColor.color(148, 0, 211);
|
|
|
|
|
/**
|
|
|
|
|
* #FF1493
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FF1493"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DEEPPINK = ChatColor.of(new Color(1.0f, 0.078431375f, 0.5764706f));
|
|
|
|
|
public static final TextColor DEEPPINK = TextColor.color(255, 20, 147);
|
|
|
|
|
/**
|
|
|
|
|
* #00BFFF
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#00BFFF"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DEEPSKYBLUE = ChatColor.of(new Color(0.0f, 0.7490196f, 1.0f));
|
|
|
|
|
public static final TextColor DEEPSKYBLUE = TextColor.color(0, 191, 255);
|
|
|
|
|
/**
|
|
|
|
|
* #696969
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#696969"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DIMGRAY = ChatColor.of(new Color(0.4117647f, 0.4117647f, 0.4117647f));
|
|
|
|
|
public static final TextColor DIMGRAY = TextColor.color(105, 105, 105);
|
|
|
|
|
/**
|
|
|
|
|
* #1E90FF
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#1E90FF"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor DODGERBLUE = ChatColor.of(new Color(0.11764706f, 0.5647059f, 1.0f));
|
|
|
|
|
public static final TextColor DODGERBLUE = TextColor.color(30, 144, 255);
|
|
|
|
|
/**
|
|
|
|
|
* #B22222
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#B22222"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor FIREBRICK = ChatColor.of(new Color(0.69803923f, 0.13333334f, 0.13333334f));
|
|
|
|
|
public static final TextColor FIREBRICK = TextColor.color(178, 34, 34);
|
|
|
|
|
/**
|
|
|
|
|
* #FFFAF0
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFFAF0"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor FLORALWHITE = ChatColor.of(new Color(1.0f, 0.98039216f, 0.9411765f));
|
|
|
|
|
public static final TextColor FLORALWHITE = TextColor.color(255, 250, 240);
|
|
|
|
|
/**
|
|
|
|
|
* #228B22
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#228B22"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor FORESTGREEN = ChatColor.of(new Color(0.13333334f, 0.54509807f, 0.13333334f));
|
|
|
|
|
public static final TextColor FORESTGREEN = TextColor.color(34, 139, 34);
|
|
|
|
|
/**
|
|
|
|
|
* #FF00FF
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FF00FF"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor FUCHSIA = ChatColor.of(new Color(1.0f, 0.0f, 1.0f));
|
|
|
|
|
public static final TextColor FUCHSIA = TextColor.color(255, 0, 255);
|
|
|
|
|
/**
|
|
|
|
|
* #DCDCDC
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#DCDCDC"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor GAINSBORO = ChatColor.of(new Color(0.8627451f, 0.8627451f, 0.8627451f));
|
|
|
|
|
public static final TextColor GAINSBORO = TextColor.color(220, 220, 220);
|
|
|
|
|
/**
|
|
|
|
|
* #F8F8FF
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#F8F8FF"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor GHOSTWHITE = ChatColor.of(new Color(0.972549f, 0.972549f, 1.0f));
|
|
|
|
|
public static final TextColor GHOSTWHITE = TextColor.color(248, 248, 255);
|
|
|
|
|
/**
|
|
|
|
|
* #DAA520
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#DAA520"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor GOLDENROD = ChatColor.of(new Color(0.85490197f, 0.64705884f, 0.1254902f));
|
|
|
|
|
public static final TextColor GOLDENROD = TextColor.color(218, 165, 32);
|
|
|
|
|
/**
|
|
|
|
|
* #ADFF2F
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#ADFF2F"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor GREENYELLOW = ChatColor.of(new Color(0.6784314f, 1.0f, 0.18431373f));
|
|
|
|
|
public static final TextColor GREENYELLOW = TextColor.color(173, 255, 47);
|
|
|
|
|
/**
|
|
|
|
|
* #F0FFF0
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#F0FFF0"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor HONEYDEW = ChatColor.of(new Color(0.9411765f, 1.0f, 0.9411765f));
|
|
|
|
|
public static final TextColor HONEYDEW = TextColor.color(240, 255, 240);
|
|
|
|
|
/**
|
|
|
|
|
* #FF69B4
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FF69B4"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor HOTPINK = ChatColor.of(new Color(1.0f, 0.4117647f, 0.7058824f));
|
|
|
|
|
public static final TextColor HOTPINK = TextColor.color(255, 105, 180);
|
|
|
|
|
/**
|
|
|
|
|
* #CD5C5C
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#CD5C5C"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor INDIANRED = ChatColor.of(new Color(0.8039216f, 0.36078432f, 0.36078432f));
|
|
|
|
|
public static final TextColor INDIANRED = TextColor.color(205, 92, 92);
|
|
|
|
|
/**
|
|
|
|
|
* #4B0082
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#4B0082"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor INDIGO = ChatColor.of(new Color(0.29411766f, 0.0f, 0.50980395f));
|
|
|
|
|
public static final TextColor INDIGO = TextColor.color(75, 0, 130);
|
|
|
|
|
/**
|
|
|
|
|
* #FFFFF0
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFFFF0"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor IVORY = ChatColor.of(new Color(1.0f, 1.0f, 0.9411765f));
|
|
|
|
|
public static final TextColor IVORY = TextColor.color(255, 255, 240);
|
|
|
|
|
/**
|
|
|
|
|
* #F0E68C
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#F0E68C"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor KHAKI = ChatColor.of(new Color(0.9411765f, 0.9019608f, 0.54901963f));
|
|
|
|
|
public static final TextColor KHAKI = TextColor.color(240, 230, 140);
|
|
|
|
|
/**
|
|
|
|
|
* #E6E6FA
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#E6E6FA"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LAVENDER = ChatColor.of(new Color(0.9019608f, 0.9019608f, 0.98039216f));
|
|
|
|
|
public static final TextColor LAVENDER = TextColor.color(230, 230, 250);
|
|
|
|
|
/**
|
|
|
|
|
* #FFF0F5
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFF0F5"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LAVENDERBLUSH = ChatColor.of(new Color(1.0f, 0.9411765f, 0.9607843f));
|
|
|
|
|
public static final TextColor LAVENDERBLUSH = TextColor.color(255, 240, 245);
|
|
|
|
|
/**
|
|
|
|
|
* #7CFC00
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#7CFC00"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LAWNGREEN = ChatColor.of(new Color(0.4862745f, 0.9882353f, 0.0f));
|
|
|
|
|
public static final TextColor LAWNGREEN = TextColor.color(124, 252, 0);
|
|
|
|
|
/**
|
|
|
|
|
* #FFFACD
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFFACD"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LEMONCHIFFON = ChatColor.of(new Color(1.0f, 0.98039216f, 0.8039216f));
|
|
|
|
|
public static final TextColor LEMONCHIFFON = TextColor.color(255, 250, 205);
|
|
|
|
|
/**
|
|
|
|
|
* #ADD8E6
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#ADD8E6"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTBLUE = ChatColor.of(new Color(0.6784314f, 0.84705883f, 0.9019608f));
|
|
|
|
|
public static final TextColor LIGHTBLUE = TextColor.color(173, 216, 230);
|
|
|
|
|
/**
|
|
|
|
|
* #F08080
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#F08080"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTCORAL = ChatColor.of(new Color(0.9411765f, 0.5019608f, 0.5019608f));
|
|
|
|
|
public static final TextColor LIGHTCORAL = TextColor.color(240, 128, 128);
|
|
|
|
|
/**
|
|
|
|
|
* #E0FFFF
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#E0FFFF"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTCYAN = ChatColor.of(new Color(0.8784314f, 1.0f, 1.0f));
|
|
|
|
|
public static final TextColor LIGHTCYAN = TextColor.color(224, 255, 255);
|
|
|
|
|
/**
|
|
|
|
|
* #FAFAD2
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FAFAD2"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTGOLDENRODYELLOW = ChatColor.of(new Color(0.98039216f, 0.98039216f, 0.8235294f));
|
|
|
|
|
public static final TextColor LIGHTGOLDENRODYELLOW = TextColor.color(250, 250, 210);
|
|
|
|
|
/**
|
|
|
|
|
* #D3D3D3
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#D3D3D3"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTGRAY = ChatColor.of(new Color(0.827451f, 0.827451f, 0.827451f));
|
|
|
|
|
public static final TextColor LIGHTGRAY = TextColor.color(211, 211, 211);
|
|
|
|
|
/**
|
|
|
|
|
* #90EE90
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#90EE90"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTGREEN = ChatColor.of(new Color(0.5647059f, 0.93333334f, 0.5647059f));
|
|
|
|
|
public static final TextColor LIGHTGREEN = TextColor.color(144, 238, 144);
|
|
|
|
|
/**
|
|
|
|
|
* #FFB6C1
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFB6C1"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTPINK = ChatColor.of(new Color(1.0f, 0.7137255f, 0.75686276f));
|
|
|
|
|
public static final TextColor LIGHTPINK = TextColor.color(255, 182, 193);
|
|
|
|
|
/**
|
|
|
|
|
* #FFA07A
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFA07A"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTSALMON = ChatColor.of(new Color(1.0f, 0.627451f, 0.47843137f));
|
|
|
|
|
public static final TextColor LIGHTSALMON = TextColor.color(255, 160, 122);
|
|
|
|
|
/**
|
|
|
|
|
* #20B2AA
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#20B2AA"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTSEAGREEN = ChatColor.of(new Color(0.1254902f, 0.69803923f, 0.6666667f));
|
|
|
|
|
public static final TextColor LIGHTSEAGREEN = TextColor.color(32, 178, 170);
|
|
|
|
|
/**
|
|
|
|
|
* #87CEFA
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#87CEFA"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTSKYBLUE = ChatColor.of(new Color(0.5294118f, 0.80784315f, 0.98039216f));
|
|
|
|
|
public static final TextColor LIGHTSKYBLUE = TextColor.color(135, 206, 250);
|
|
|
|
|
/**
|
|
|
|
|
* #778899
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#778899"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTSLATEGRAY = ChatColor.of(new Color(0.46666667f, 0.53333336f, 0.6f));
|
|
|
|
|
public static final TextColor LIGHTSLATEGRAY = TextColor.color(119, 136, 153);
|
|
|
|
|
/**
|
|
|
|
|
* #B0C4DE
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#B0C4DE"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTSTEELBLUE = ChatColor.of(new Color(0.6901961f, 0.76862746f, 0.87058824f));
|
|
|
|
|
public static final TextColor LIGHTSTEELBLUE = TextColor.color(176, 196, 222);
|
|
|
|
|
/**
|
|
|
|
|
* #FFFFE0
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFFFE0"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIGHTYELLOW = ChatColor.of(new Color(1.0f, 1.0f, 0.8784314f));
|
|
|
|
|
public static final TextColor LIGHTYELLOW = TextColor.color(255, 255, 224);
|
|
|
|
|
/**
|
|
|
|
|
* #00FF00
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#00FF00"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIME = ChatColor.of(new Color(0.0f, 1.0f, 0.0f));
|
|
|
|
|
public static final TextColor LIME = TextColor.color(0, 255, 0);
|
|
|
|
|
/**
|
|
|
|
|
* #32CD32
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#32CD32"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LIMEGREEN = ChatColor.of(new Color(0.19607843f, 0.8039216f, 0.19607843f));
|
|
|
|
|
public static final TextColor LIMEGREEN = TextColor.color(50, 205, 50);
|
|
|
|
|
/**
|
|
|
|
|
* #FAF0E6
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FAF0E6"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor LINEN = ChatColor.of(new Color(0.98039216f, 0.9411765f, 0.9019608f));
|
|
|
|
|
public static final TextColor LINEN = TextColor.color(250, 240, 230);
|
|
|
|
|
/**
|
|
|
|
|
* #FF00FF
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FF00FF"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MAGENTA = ChatColor.of(new Color(1.0f, 0.0f, 1.0f));
|
|
|
|
|
public static final TextColor MAGENTA = TextColor.color(255, 0, 255);
|
|
|
|
|
/**
|
|
|
|
|
* #800000
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#800000"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MAROON = ChatColor.of(new Color(0.5019608f, 0.0f, 0.0f));
|
|
|
|
|
public static final TextColor MAROON = TextColor.color(128, 0, 0);
|
|
|
|
|
/**
|
|
|
|
|
* #66CDAA
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#66CDAA"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MEDIUMAQUAMARINE = ChatColor.of(new Color(0.4f, 0.8039216f, 0.6666667f));
|
|
|
|
|
public static final TextColor MEDIUMAQUAMARINE = TextColor.color(102, 205, 170);
|
|
|
|
|
/**
|
|
|
|
|
* #0000CD
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#0000CD"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MEDIUMBLUE = ChatColor.of(new Color(0.0f, 0.0f, 0.8039216f));
|
|
|
|
|
public static final TextColor MEDIUMBLUE = TextColor.color(0, 0, 205);
|
|
|
|
|
/**
|
|
|
|
|
* #BA55D3
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#BA55D3"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MEDIUMORCHID = ChatColor.of(new Color(0.7294118f, 0.33333334f, 0.827451f));
|
|
|
|
|
public static final TextColor MEDIUMORCHID = TextColor.color(186, 85, 211);
|
|
|
|
|
/**
|
|
|
|
|
* #9370DB
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#9370DB"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MEDIUMPURPLE = ChatColor.of(new Color(0.5764706f, 0.4392157f, 0.85882354f));
|
|
|
|
|
public static final TextColor MEDIUMPURPLE = TextColor.color(147, 112, 219);
|
|
|
|
|
/**
|
|
|
|
|
* #3CB371
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#3CB371"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MEDIUMSEAGREEN = ChatColor.of(new Color(0.23529412f, 0.7019608f, 0.44313726f));
|
|
|
|
|
public static final TextColor MEDIUMSEAGREEN = TextColor.color(60, 179, 113);
|
|
|
|
|
/**
|
|
|
|
|
* #7B68EE
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#7B68EE"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MEDIUMSLATEBLUE = ChatColor.of(new Color(0.48235294f, 0.40784314f, 0.93333334f));
|
|
|
|
|
public static final TextColor MEDIUMSLATEBLUE = TextColor.color(123, 104, 238);
|
|
|
|
|
/**
|
|
|
|
|
* #00FA9A
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#00FA9A"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MEDIUMSPRINGGREEN = ChatColor.of(new Color(0.0f, 0.98039216f, 0.6039216f));
|
|
|
|
|
public static final TextColor MEDIUMSPRINGGREEN = TextColor.color(0, 250, 154);
|
|
|
|
|
/**
|
|
|
|
|
* #48D1CC
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#48D1CC"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MEDIUMTURQUOISE = ChatColor.of(new Color(0.28235295f, 0.81960785f, 0.8f));
|
|
|
|
|
public static final TextColor MEDIUMTURQUOISE = TextColor.color(72, 209, 204);
|
|
|
|
|
/**
|
|
|
|
|
* #C71585
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#C71585"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MEDIUMVIOLETRED = ChatColor.of(new Color(0.78039217f, 0.08235294f, 0.52156866f));
|
|
|
|
|
public static final TextColor MEDIUMVIOLETRED = TextColor.color(199, 21, 133);
|
|
|
|
|
/**
|
|
|
|
|
* #191970
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#191970"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MIDNIGHTBLUE = ChatColor.of(new Color(0.09803922f, 0.09803922f, 0.4392157f));
|
|
|
|
|
public static final TextColor MIDNIGHTBLUE = TextColor.color(25, 25, 112);
|
|
|
|
|
/**
|
|
|
|
|
* #F5FFFA
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#F5FFFA"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MINTCREAM = ChatColor.of(new Color(0.9607843f, 1.0f, 0.98039216f));
|
|
|
|
|
public static final TextColor MINTCREAM = TextColor.color(245, 255, 250);
|
|
|
|
|
/**
|
|
|
|
|
* #FFE4E1
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFE4E1"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MISTYROSE = ChatColor.of(new Color(1.0f, 0.89411765f, 0.88235295f));
|
|
|
|
|
public static final TextColor MISTYROSE = TextColor.color(255, 228, 225);
|
|
|
|
|
/**
|
|
|
|
|
* #FFE4B5
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFE4B5"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor MOCCASIN = ChatColor.of(new Color(1.0f, 0.89411765f, 0.70980394f));
|
|
|
|
|
public static final TextColor MOCCASIN = TextColor.color(255, 228, 181);
|
|
|
|
|
/**
|
|
|
|
|
* #FFDEAD
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFDEAD"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor NAVAJOWHITE = ChatColor.of(new Color(1.0f, 0.87058824f, 0.6784314f));
|
|
|
|
|
public static final TextColor NAVAJOWHITE = TextColor.color(255, 222, 173);
|
|
|
|
|
/**
|
|
|
|
|
* #000080
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#000080"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor NAVY = ChatColor.of(new Color(0.0f, 0.0f, 0.5019608f));
|
|
|
|
|
public static final TextColor NAVY = TextColor.color(0, 0, 128);
|
|
|
|
|
/**
|
|
|
|
|
* #FDF5E6
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FDF5E6"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor OLDLACE = ChatColor.of(new Color(0.99215686f, 0.9607843f, 0.9019608f));
|
|
|
|
|
public static final TextColor OLDLACE = TextColor.color(253, 245, 230);
|
|
|
|
|
/**
|
|
|
|
|
* #808000
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#808000"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor OLIVE = ChatColor.of(new Color(0.5019608f, 0.5019608f, 0.0f));
|
|
|
|
|
public static final TextColor OLIVE = TextColor.color(128, 128, 0);
|
|
|
|
|
/**
|
|
|
|
|
* #6B8E23
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#6B8E23"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor OLIVEDRAB = ChatColor.of(new Color(0.41960785f, 0.5568628f, 0.13725491f));
|
|
|
|
|
public static final TextColor OLIVEDRAB = TextColor.color(107, 142, 35);
|
|
|
|
|
/**
|
|
|
|
|
* #FFA500
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFA500"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor ORANGE = ChatColor.of(new Color(1.0f, 0.64705884f, 0.0f));
|
|
|
|
|
public static final TextColor ORANGE = TextColor.color(255, 165, 0);
|
|
|
|
|
/**
|
|
|
|
|
* #FF4500
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FF4500"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor ORANGERED = ChatColor.of(new Color(1.0f, 0.27058825f, 0.0f));
|
|
|
|
|
public static final TextColor ORANGERED = TextColor.color(255, 69, 0);
|
|
|
|
|
/**
|
|
|
|
|
* #DA70D6
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#DA70D6"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor ORCHID = ChatColor.of(new Color(0.85490197f, 0.4392157f, 0.8392157f));
|
|
|
|
|
public static final TextColor ORCHID = TextColor.color(218, 112, 214);
|
|
|
|
|
/**
|
|
|
|
|
* #EEE8AA
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#EEE8AA"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor PALEGOLDENROD = ChatColor.of(new Color(0.93333334f, 0.9098039f, 0.6666667f));
|
|
|
|
|
public static final TextColor PALEGOLDENROD = TextColor.color(238, 232, 170);
|
|
|
|
|
/**
|
|
|
|
|
* #98FB98
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#98FB98"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor PALEGREEN = ChatColor.of(new Color(0.59607846f, 0.9843137f, 0.59607846f));
|
|
|
|
|
public static final TextColor PALEGREEN = TextColor.color(152, 251, 152);
|
|
|
|
|
/**
|
|
|
|
|
* #AFEEEE
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#AFEEEE"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor PALETURQUOISE = ChatColor.of(new Color(0.6862745f, 0.93333334f, 0.93333334f));
|
|
|
|
|
public static final TextColor PALETURQUOISE = TextColor.color(175, 238, 238);
|
|
|
|
|
/**
|
|
|
|
|
* #DB7093
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#DB7093"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor PALEVIOLETRED = ChatColor.of(new Color(0.85882354f, 0.4392157f, 0.5764706f));
|
|
|
|
|
public static final TextColor PALEVIOLETRED = TextColor.color(219, 112, 147);
|
|
|
|
|
/**
|
|
|
|
|
* #FFEFD5
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFEFD5"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor PAPAYAWHIP = ChatColor.of(new Color(1.0f, 0.9372549f, 0.8352941f));
|
|
|
|
|
public static final TextColor PAPAYAWHIP = TextColor.color(255, 239, 213);
|
|
|
|
|
/**
|
|
|
|
|
* #FFDAB9
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFDAB9"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor PEACHPUFF = ChatColor.of(new Color(1.0f, 0.85490197f, 0.7254902f));
|
|
|
|
|
public static final TextColor PEACHPUFF = TextColor.color(255, 218, 185);
|
|
|
|
|
/**
|
|
|
|
|
* #CD853F
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#CD853F"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor PERU = ChatColor.of(new Color(0.8039216f, 0.52156866f, 0.24705882f));
|
|
|
|
|
public static final TextColor PERU = TextColor.color(205, 133, 63);
|
|
|
|
|
/**
|
|
|
|
|
* #FFC0CB
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFC0CB"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor PINK = ChatColor.of(new Color(1.0f, 0.7529412f, 0.79607844f));
|
|
|
|
|
public static final TextColor PINK = TextColor.color(255, 192, 203);
|
|
|
|
|
/**
|
|
|
|
|
* #DDA0DD
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#DDA0DD"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor PLUM = ChatColor.of(new Color(0.8666667f, 0.627451f, 0.8666667f));
|
|
|
|
|
public static final TextColor PLUM = TextColor.color(221, 160, 221);
|
|
|
|
|
/**
|
|
|
|
|
* #B0E0E6
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#B0E0E6"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor POWDERBLUE = ChatColor.of(new Color(0.6901961f, 0.8784314f, 0.9019608f));
|
|
|
|
|
public static final TextColor POWDERBLUE = TextColor.color(176, 224, 230);
|
|
|
|
|
/**
|
|
|
|
|
* #800080
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#800080"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor PURPLE = ChatColor.of(new Color(0.5019608f, 0.0f, 0.5019608f));
|
|
|
|
|
public static final TextColor PURPLE = TextColor.color(128, 0, 128);
|
|
|
|
|
/**
|
|
|
|
|
* #BC8F8F
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#BC8F8F"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor ROSYBROWN = ChatColor.of(new Color(0.7372549f, 0.56078434f, 0.56078434f));
|
|
|
|
|
public static final TextColor ROSYBROWN = TextColor.color(188, 143, 143);
|
|
|
|
|
/**
|
|
|
|
|
* #4169E1
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#4169E1"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor ROYALBLUE = ChatColor.of(new Color(0.25490198f, 0.4117647f, 0.88235295f));
|
|
|
|
|
public static final TextColor ROYALBLUE = TextColor.color(65, 105, 225);
|
|
|
|
|
/**
|
|
|
|
|
* #8B4513
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#8B4513"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor SADDLEBROWN = ChatColor.of(new Color(0.54509807f, 0.27058825f, 0.07450981f));
|
|
|
|
|
public static final TextColor SADDLEBROWN = TextColor.color(139, 69, 19);
|
|
|
|
|
/**
|
|
|
|
|
* #FA8072
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FA8072"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor SALMON = ChatColor.of(new Color(0.98039216f, 0.5019608f, 0.44705883f));
|
|
|
|
|
public static final TextColor SALMON = TextColor.color(250, 128, 114);
|
|
|
|
|
/**
|
|
|
|
|
* #F4A460
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#F4A460"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor SANDYBROWN = ChatColor.of(new Color(0.95686275f, 0.6431373f, 0.3764706f));
|
|
|
|
|
public static final TextColor SANDYBROWN = TextColor.color(244, 164, 96);
|
|
|
|
|
/**
|
|
|
|
|
* #2E8B57
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#2E8B57"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor SEAGREEN = ChatColor.of(new Color(0.18039216f, 0.54509807f, 0.34117648f));
|
|
|
|
|
public static final TextColor SEAGREEN = TextColor.color(46, 139, 87);
|
|
|
|
|
/**
|
|
|
|
|
* #FFF5EE
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFF5EE"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor SEASHELL = ChatColor.of(new Color(1.0f, 0.9607843f, 0.93333334f));
|
|
|
|
|
public static final TextColor SEASHELL = TextColor.color(255, 245, 238);
|
|
|
|
|
/**
|
|
|
|
|
* #A0522D
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#A0522D"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor SIENNA = ChatColor.of(new Color(0.627451f, 0.32156864f, 0.1764706f));
|
|
|
|
|
public static final TextColor SIENNA = TextColor.color(160, 82, 45);
|
|
|
|
|
/**
|
|
|
|
|
* #C0C0C0
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#C0C0C0"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor SILVER = ChatColor.of(new Color(0.7529412f, 0.7529412f, 0.7529412f));
|
|
|
|
|
public static final TextColor SILVER = TextColor.color(192, 192, 192);
|
|
|
|
|
/**
|
|
|
|
|
* #87CEEB
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#87CEEB"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor SKYBLUE = ChatColor.of(new Color(0.5294118f, 0.80784315f, 0.92156863f));
|
|
|
|
|
public static final TextColor SKYBLUE = TextColor.color(135, 206, 235);
|
|
|
|
|
/**
|
|
|
|
|
* #6A5ACD
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#6A5ACD"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor SLATEBLUE = ChatColor.of(new Color(0.41568628f, 0.3529412f, 0.8039216f));
|
|
|
|
|
public static final TextColor SLATEBLUE = TextColor.color(106, 90, 205);
|
|
|
|
|
/**
|
|
|
|
|
* #708090
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#708090"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor SLATEGRAY = ChatColor.of(new Color(0.4392157f, 0.5019608f, 0.5647059f));
|
|
|
|
|
public static final TextColor SLATEGRAY = TextColor.color(112, 128, 144);
|
|
|
|
|
/**
|
|
|
|
|
* #FFFAFA
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FFFAFA"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor SNOW = ChatColor.of(new Color(1.0f, 0.98039216f, 0.98039216f));
|
|
|
|
|
public static final TextColor SNOW = TextColor.color(255, 250, 250);
|
|
|
|
|
/**
|
|
|
|
|
* #00FF7F
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#00FF7F"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor SPRINGGREEN = ChatColor.of(new Color(0.0f, 1.0f, 0.49803922f));
|
|
|
|
|
public static final TextColor SPRINGGREEN = TextColor.color(0, 255, 127);
|
|
|
|
|
/**
|
|
|
|
|
* #4682B4
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#4682B4"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor STEELBLUE = ChatColor.of(new Color(0.27450982f, 0.50980395f, 0.7058824f));
|
|
|
|
|
public static final TextColor STEELBLUE = TextColor.color(70, 130, 180);
|
|
|
|
|
/**
|
|
|
|
|
* #D2B48C
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#D2B48C"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor TAN = ChatColor.of(new Color(0.8235294f, 0.7058824f, 0.54901963f));
|
|
|
|
|
public static final TextColor TAN = TextColor.color(210, 180, 140);
|
|
|
|
|
/**
|
|
|
|
|
* #008080
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#008080"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor TEAL = ChatColor.of(new Color(0.0f, 0.5019608f, 0.5019608f));
|
|
|
|
|
public static final TextColor TEAL = TextColor.color(0, 128, 128);
|
|
|
|
|
/**
|
|
|
|
|
* #D8BFD8
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#D8BFD8"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor THISTLE = ChatColor.of(new Color(0.84705883f, 0.7490196f, 0.84705883f));
|
|
|
|
|
public static final TextColor THISTLE = TextColor.color(216, 191, 216);
|
|
|
|
|
/**
|
|
|
|
|
* #FF6347
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#FF6347"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor TOMATO = ChatColor.of(new Color(1.0f, 0.3882353f, 0.2784314f));
|
|
|
|
|
public static final TextColor TOMATO = TextColor.color(255, 99, 71);
|
|
|
|
|
/**
|
|
|
|
|
* #40E0D0
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#40E0D0"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor TURQUOISE = ChatColor.of(new Color(0.2509804f, 0.8784314f, 0.8156863f));
|
|
|
|
|
public static final TextColor TURQUOISE = TextColor.color(64, 224, 208);
|
|
|
|
|
/**
|
|
|
|
|
* #EE82EE
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#EE82EE"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor VIOLET = ChatColor.of(new Color(0.93333334f, 0.50980395f, 0.93333334f));
|
|
|
|
|
public static final TextColor VIOLET = TextColor.color(238, 130, 238);
|
|
|
|
|
/**
|
|
|
|
|
* #F5DEB3
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#F5DEB3"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor WHEAT = ChatColor.of(new Color(0.9607843f, 0.87058824f, 0.7019608f));
|
|
|
|
|
public static final TextColor WHEAT = TextColor.color(245, 222, 179);
|
|
|
|
|
/**
|
|
|
|
|
* #F5F5F5
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#F5F5F5"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor WHITESMOKE = ChatColor.of(new Color(0.9607843f, 0.9607843f, 0.9607843f));
|
|
|
|
|
public static final TextColor WHITESMOKE = TextColor.color(245, 245, 245);
|
|
|
|
|
/**
|
|
|
|
|
* #9ACD32
|
|
|
|
|
* <div style="width:120px;height:120px;background-color:#9ACD32"></div>
|
|
|
|
|
*/
|
|
|
|
|
public static final ChatColor YELLOWGREEN = ChatColor.of(new Color(0.6039216f, 0.8039216f, 0.19607843f));
|
|
|
|
|
public static final TextColor YELLOWGREEN = TextColor.color(154, 205, 50);
|
|
|
|
|
}
|
|
|
|
|