struct my_colors {
        unsigned char r,g,b;
        long p;
} color[MAX_COLORS + RED_COL] = {
	{ 0, 0, 0, 0 },  /* Black */		/* 0 */
	{ 255, 255, 255, 0,}, /* White */	/* 1 */
        { 0, 255, 0, 0 },  /* Green */		/* 2 */
        { 0, 0, 255, 0 },  /* Blue */		/* 3 */
        { 255, 0, 0, 0,}, /* Red */		/* 4 */
	{ 128, 128, 128, 0,}, /* Gray */	/* 5 */
        { 0, 128, 0, 0 }, /* Half-Green */	/* 6 */
        { 128, 0, 0, 0 }, /* Half-Red */         /* 7 */
        { 0, 0, 128, 0 }, /* Half-Blue */         /* 8 */
        { 64, 64, 64, 0 }, /* Dark Gray */     /* 9 */
        { 210, 180, 140, 0 }, /* Tan */            /* 10 */
        { 218, 165, 32, 0 }, /* Goldenrod */       /* 11 */
        { 64, 0, 0, 0 }, /* red */            /* 12 */
        { 128, 0, 0, 0 }, /* red */            /* 13 */
        { 194, 0, 0, 0 }, /* red */            /* 13 */
	{ 226, 0, 0, 0 }, /* red */		/* 14 */
};
