Add ANSI colouring class.
[xudocci.git] / src / main / java / net / pterodactylus / xdcc / ui / stdin / Ansi.java
1 /*
2  * XdccDownloader - AnsiColors.java - Copyright © 2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.xdcc.ui.stdin;
19
20 import static java.lang.String.format;
21
22 /**
23  * Handles colouring the telnet output.
24  *
25  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
26  */
27 public class Ansi {
28
29         public static final String bold = "\u001b[1m";
30         public static final String reset = "\u001b[0m";
31         public static final String red = "\u001b[31m";
32         public static final String green = "\u001b[32m";
33
34         public static String bold(String text) {
35                 return format("%s%s%s", bold, text, reset);
36         }
37
38         public static String red(String text) {
39                 return format("%s%s%s", red, text, reset);
40         }
41
42         public static String green(String text) {
43                 return format("%s%s%s", green, text, reset);
44         }
45
46 }