/* * RHQ Management Platform * Copyright (C) 2005-2014 Red Hat, Inc. * All rights reserved. * * 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 version 2 of the License. * * 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, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ package org.rhq.etc.ircbot; /** * @author Jirka Kremser * */ public interface Color { String NORMAL = "\u000f"; String BOLD = "\u0002"; String UNDERLINE = "\u001f"; String REVERSE = "\u0016"; String WHITE = "\u000300"; String BLACK = "\u000301"; String DARK_BLUE = "\u000302"; String DARK_GREEN = "\u000303"; String RED = "\u000304"; String BROWN = "\u000305"; String PURPLE = "\u000306"; String OLIVE = "\u000307"; String YELLOW = "\u000308"; String GREEN = "\u000309"; String TEAL = "\u000310"; String CYAN = "\u000311"; String BLUE = "\u000312"; String MAGENTA = "\u000313"; String DARK_GRAY = "\u000314"; String LIGHT_GRAY = "\u000315"; }