#ifndef GIMMELIB_COLOR_H
#define GIMMELIB_COLOR_H

#define DFLT_MAX_COLORS    16

#ifdef I_AM_COLOR
static USHORT gimColorTable[DFLT_MAX_COLORS] = {
    0x002, 0xaaa, 0x900, 0x039,
    0x2c2, 0xbb0, 0x0ff, 0xf0f,
    0x620, 0xe50, 0x9f1, 0xeb0,
    0x92f, 0x55f, 0x0f8, 0xeee
  };
#endif I_AM_COLOR

#define GIM_BACKGROUND	0

#define GIM_BLACK	0
#define GIM_WHITE	1
#define GIM_RED 	2
#define GIM_BLUE	3

#define GIM_GREEN	4
#define GIM_YELLOW	5
#define GIM_CYAN	6
#define GIM_MAGENTA	7

#define GIM_DRED	8
#define GIM_ORANGE	9
#define GIM_LGREEN	10
#define GIM_MUSTARD	11
#define GIM_PURPLE	12
#define GIM_LBLUE	13
#define GIM_MINT	14
#define GIM_LWHITE	15

#endif !GIMMELIB_COLOR_H
