// Copyright 1999
// College of Computer Science
// Northeastern University Boston MA 02115

// This software may be used for educational purposes as long as this copyright
// notice is retained at the top of all files

// Should this software be modified, the words "Modified from Original" must be
// included as a comment below this notice

// All publication rights are retained.  This software or its documentation may
// not be published in any media either in whole or in part.

///////////////////////////////////////////////////////////////////////////////

// RGBNames.h						48 color variations

///////////////////////////////////////////////////////////////////////////////

#ifndef RGBNAMES_H_
#define RGBNAMES_H_

#include "RGB.h"						// RGBdata definition

const RGBdata RGBaquamarine				( 127, 255, 212 );
const RGBdata RGBbeige					( 245, 245, 220 );
const RGBdata RGBbisque					( 255, 228, 196 );
const RGBdata RGBblack					(   0,   0,   0 );
const RGBdata RGBblue					(   0,   0, 255 );
const RGBdata RGBblueviolet				( 138,  43, 226 );
const RGBdata RGBbrown					( 165,  42,  42 );
const RGBdata RGBchartreuse				( 127, 255,   0 );
const RGBdata RGBchocolate				( 210, 105,  30 );
const RGBdata RGBcoral					( 255, 127,  80 );
const RGBdata RGBcyan					(   0, 255, 255 );
const RGBdata RGBfirebrick				( 178,  34,  34 );
const RGBdata RGBforestgreen			(  34, 139,  34 );
const RGBdata RGBgold					( 255, 215,   0 );
const RGBdata RGBgoldenrod				( 218, 165,  32 );
const RGBdata RGBgray					( 190, 190, 190 );
const RGBdata RGBgreen					(   0, 255,   0 );
const RGBdata RGBgreenyellow			( 173, 255,  47 );
const RGBdata RGBhoneydew				( 240, 255, 240 );
const RGBdata RGBhotpink				( 255, 105, 180 );
const RGBdata RGBindianred				( 205,  92,  92 );
const RGBdata RGBkhaki					( 240, 230, 140 );
const RGBdata RGBlawngreen				( 124, 252,   0 );
const RGBdata RGBlimegreen				(  50, 205,  50 );
const RGBdata RGBmagenta				( 255,   0, 255 );
const RGBdata RGBmaroon					( 176,  48,  96 );
const RGBdata RGBmidnightblue			(  25,  25, 112 );
const RGBdata RGBorange					( 255, 165,   0 );
const RGBdata RGBorangered				( 255,  69,   0 );
const RGBdata RGBorchid					( 218, 112, 214 );
const RGBdata RGBpink					( 255, 192, 203 );
const RGBdata RGBplum					( 221, 160, 221 );
const RGBdata RGBpurple					( 160,  32, 240 );
const RGBdata RGBred					( 255,   0,   0 );
const RGBdata RGBsalmon					( 250, 128, 114 );
const RGBdata RGBsandybrown				( 244, 164,  96 );
const RGBdata RGBseagreen				(  46, 139,  87 );
const RGBdata RGBsienna					( 160,  82,  45 );
const RGBdata RGBskyblue				( 135, 206, 235 );
const RGBdata RGBtan					( 210, 180, 140 );
const RGBdata RGBtomato					( 255,  99,  71 );
const RGBdata RGBturquoise				(  64, 224, 208 );
const RGBdata RGBviolet					( 238, 130, 238 );
const RGBdata RGBvioletred				( 208,  32, 144 );
const RGBdata RGBwheat					( 245, 222, 179 );
const RGBdata RGBwhite					( 255, 255, 255 );
const RGBdata RGByellow					( 255, 255,   0 );
const RGBdata RGByellowgreen			( 154, 205,  50 );

#endif // RGBNAMES_H_