Color Parsing
Status: Alpha
Brought to you by:
asicath
static public Color[] yellow = {new Color(0,
brightColor, brightColor), new Color(0, dimColor, dimColor)
};
should be
static public Color[] yellow = {new Color(brightColor,
brightColor, 0), new Color(dimColor, dimColor, 0)};
else if (command == 40) {backgroundColor =
black[dim];}
should be:
else if (command == 40) {backgroundColor = Color.
black;}
Or it comes out gray.