Skip to content

Instantly share code, notes, and snippets.

@Pwootage
Created November 27, 2011 00:10
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pwootage/1396569 to your computer and use it in GitHub Desktop.
Save Pwootage/1396569 to your computer and use it in GitHub Desktop.
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