/*
 * This file is part of the QPxTool project.
 * Copyright (C) 2012 Gennady "ShultZ" Kozlov <qpxtool@mail.ru>
 *
 * 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 2 of the License, or
 * (at your option) any later version.
 * See the file "COPYING" for the exact licensing terms.
 */

#ifndef _COLORS_H_INCLUDED
#define _COLORS_H_INCLUDED

#define COL_GR0   "\E[30;60m"
#define COL_RED   "\E[31;60m"
#define COL_GRN   "\E[32;60m"
#define COL_YEL   "\E[33;60m"
#define COL_BLU   "\E[34;60m"
#define COL_VIOL  "\E[35;60m"
#define COL_CYAN  "\E[36;60m"
#define COL_GR1   "\E[37;60m"
#define COL_NO__  "\E[38;60m"
#define COL_WHITE "\E[39;60m"

#define COL_NORM "\E[0m"

#endif

