From: David ‘Bombe’ Roden Date: Fri, 18 Oct 2013 04:21:57 +0000 (+0200) Subject: Add ANSI colouring class. X-Git-Url: https://git.pterodactylus.net/?p=xudocci.git;a=commitdiff_plain;h=76c13f140de3e69b5b32cfd134356d7d5fc0b97b Add ANSI colouring class. --- diff --git a/src/main/java/net/pterodactylus/xdcc/ui/stdin/Ansi.java b/src/main/java/net/pterodactylus/xdcc/ui/stdin/Ansi.java new file mode 100644 index 0000000..43bad36 --- /dev/null +++ b/src/main/java/net/pterodactylus/xdcc/ui/stdin/Ansi.java @@ -0,0 +1,46 @@ +/* + * XdccDownloader - AnsiColors.java - Copyright © 2013 David Roden + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package net.pterodactylus.xdcc.ui.stdin; + +import static java.lang.String.format; + +/** + * Handles colouring the telnet output. + * + * @author David ‘Bombe’ Roden + */ +public class Ansi { + + public static final String bold = "\u001b[1m"; + public static final String reset = "\u001b[0m"; + public static final String red = "\u001b[31m"; + public static final String green = "\u001b[32m"; + + public static String bold(String text) { + return format("%s%s%s", bold, text, reset); + } + + public static String red(String text) { + return format("%s%s%s", red, text, reset); + } + + public static String green(String text) { + return format("%s%s%s", green, text, reset); + } + +}