aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/util/UtilsText.java
blob: 6d26676ce34ba6c339822d17ae7b2bf27ed255eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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;
	}

}