RuneHive-Game
Loading...
Searching...
No Matches
MessageColor.java
Go to the documentation of this file.
1package com.runehive.util;
2
3/**
4 * Holds an enum of colors for ease.
5 *
6 * @author Daniel
7 */
8public enum MessageColor {
9 /* Developer Debug */
10 DEVELOPER("C93443"),
11
12 /* Neutral */
13 BLACK("000000"),
14 WHITE("FFFFFF"),
15 GREY("736D6D"),
16
17 /* Red */
18 RED("FF0000"),
19 LIGHT_RED("E33653"),
20 DARK_RED("A11A1A"),
21
22 /* Purple */
23 PURPLE("7F007F"),
24 LIGHT_PURPLE("CD45FF"),
25 DARK_PURPLE("9415C2"),
26
27 /* Green */
28 GREEN("1ADB34"),
29 LIGHT_GREEN("34ED4D"),
30 DARK_GREEN("118C21"),
31
32 /* Orange */
33 ORANGE("FF8400"),
34 LIGHT_ORANGE("FFA340"),
35 DARK_ORANGE("D47A19"),
36
37 /* Blue */
38 BLUE("1944BD"),
39 LIGHT_BLUE("0DA6D9"),
40 DARK_BLUE("11558C"),
41
42 // other
43 BRONZE("7E3200");
44
45 /* The color */
46 private final String color;
47
49 this.color = color;
50 }
51
52 /**
53 * Gets the color.
54 * @return The color.
55 */
56 public String getColor() { return color; }
57}
String getColor()
Gets the color.