Program Listing for File colours.h
↰ Return to documentation for file (src/popf/colours.h)
/************************************************************************
* Copyright 2010, Strathclyde Planning Group,
* Department of Computer and Information Sciences,
* University of Strathclyde, Glasgow, UK
* http://planning.cis.strath.ac.uk/
*
* Andrew Coles, Amanda Coles - Code for POPF
* Maria Fox, Richard Howey and Derek Long - Code from VAL
* Stephen Cresswell - PDDL Parser
*
* This file is part of the planner POPF.
*
* POPF 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.
*
* POPF 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 POPF. If not, see <http://www.gnu.org/licenses/>.
*
************************************************************************/
#ifndef COLOURS_H
#define COLOURS_H
#define COLOUR_default "\033[00m"
#define COLOUR_red "\033[22;31m"
#define COLOUR_green "\033[22;32m"
#define COLOUR_brown "\033[22;33m"
#define COLOUR_blue "\033[22;34m"
#define COLOUR_magenta "\033[22;35m"
#define COLOUR_cyan "\033[22;36m"
#define COLOUR_grey "\033[22;37m"
#define COLOUR_dark_grey "\033[01;30m"
#define COLOUR_light_red "\033[01;31m"
#define COLOUR_light_green "\033[01;32m"
#define COLOUR_yellow "\033[01;33m"
#define COLOUR_light_blue "\033[01;34m"
#define COLOUR_light_magenta "\033[01;35m"
#define COLOUR_light_cyan "\033[01;36m"
#define COLOUR_light_white "\033[01;37m"
#endif