aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/util/UtilsText.java
blob: 0db7dd35a2e19528be946bdaa1f952c61571002d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package gtPlusPlus.core.util;

public enum UtilsText {

	blue('1'), green('2'), teal('3'), maroon('4'), purple('5'), orange('6'), lightGray('7'), darkGray('8'), lightBlue(
			'9'), black('0'), lime('a'), aqua('b'), red('c'), pink('d'), yellow('e'), white('f');

	private char colourValue;

	private UtilsText(final char value) {
		this.colourValue = value;
	}

	public String colour() {
		return "�" + this.colourValue;
	}

}