00001 /* Fixed colors - always in color map. */ 00002 #include "common.h" 00003 #include "memgfx.h" 00004 00005 static char const rcsid[] = "$Id: fixColor.c,v 1.3 2003/05/06 07:33:42 kate Exp $"; 00006 00007 struct rgbColor mgFixedColors[9] = { 00008 /* These correspond to MG_WHITE, MG_BLACK, etc. */ 00009 { 255, 255, 255}, 00010 { 0, 0, 0}, 00011 { 255, 0, 0}, 00012 { 0, 255, 0}, 00013 { 0, 0, 255}, 00014 { 0, 255, 255}, 00015 { 255, 0, 255}, 00016 { 255, 255, 0}, 00017 { 140, 140, 140}, 00018 }; 00019 00020 00021
1.5.2