Color codes
/** | |
* Represents black | |
*/ | |
BLACK(0x0), | |
/** | |
* Represents dark blue | |
*/ | |
DARK_BLUE(0x1), | |
/** | |
* Represents dark green | |
*/ | |
DARK_GREEN(0x2), | |
/** | |
* Represents dark blue (aqua) | |
*/ | |
DARK_AQUA(0x3), | |
/** | |
* Represents dark red | |
*/ | |
DARK_RED(0x4), | |
/** | |
* Represents dark purple | |
*/ | |
DARK_PURPLE(0x5), | |
/** | |
* Represents gold | |
*/ | |
GOLD(0x6), | |
/** | |
* Represents gray | |
*/ | |
GRAY(0x7), | |
/** | |
* Represents dark gray | |
*/ | |
DARK_GRAY(0x8), | |
/** | |
* Represents blue | |
*/ | |
BLUE(0x9), | |
/** | |
* Represents green | |
*/ | |
GREEN(0xA), | |
/** | |
* Represents aqua | |
*/ | |
AQUA(0xB), | |
/** | |
* Represents red | |
*/ | |
RED(0xC), | |
/** | |
* Represents light purple | |
*/ | |
LIGHT_PURPLE(0xD), | |
/** | |
* Represents yellow | |
*/ | |
YELLOW(0xE), | |
/** | |
* Represents white | |
*/ | |
WHITE(0xF); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment