1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
/* Fig's 32 standard colors, taken from xfig source.
The list includes the 8 standard colors (vertices of the RGB cube,
listed first). It also includes three intermediate intensities for each
of the 6 standard colors other than black and white (except that yellow
is missing, so there are only 5, giving 15 additional shades in all).
Also included are 8 random colors (LtBlue, Gold, Brown?, Pink, and
Pink?, with ? = 2,3,4) apparently present because someone liked them.
LtBlue is the only color in the interior of the cube. */
#include "sys-defines.h"
#include "extern.h"
const plColor _fig_stdcolors[FIG_NUM_STD_COLORS] =
{
{0x00, 0x00, 0x00}, /* Black */
{0x00, 0x00, 0xff}, /* Blue */
{0x00, 0xff, 0x00}, /* Green */
{0x00, 0xff, 0xff}, /* Cyan */
{0xff, 0x00, 0x00}, /* Red */
{0xff, 0x00, 0xff}, /* Magenta */
{0xff, 0xff, 0x00}, /* Yellow */
{0xff, 0xff, 0xff}, /* White */
{0x00, 0x00, 0x90}, /* Blue4 */
{0x00, 0x00, 0xb0}, /* Blue3 */
{0x00, 0x00, 0xd0}, /* Blue2 */
{0x87, 0xce, 0xff}, /* LtBlue [SkyBlue1 in rgb.txt] */
{0x00, 0x90, 0x00}, /* Green4 */
{0x00, 0xb0, 0x00}, /* Green3 */
{0x00, 0xd0, 0x00}, /* Green2 */
{0x00, 0x90, 0x90}, /* Cyan4 */
{0x00, 0xb0, 0xb0}, /* Cyan3 */
{0x00, 0xd0, 0xd0}, /* Cyan2 */
{0x90, 0x00, 0x00}, /* Red4 */
{0xb0, 0x00, 0x00}, /* Red3 */
{0xd0, 0x00, 0x00}, /* Red2 */
{0x90, 0x00, 0x90}, /* Magenta4 */
{0xb0, 0x00, 0xb0}, /* Magenta3 */
{0xd0, 0x00, 0xd0}, /* Magenta2 */
{0x80, 0x30, 0x00}, /* Brown4, ad hoc */
{0xa0, 0x40, 0x00}, /* Brown3, ad hoc */
{0xc0, 0x60, 0x00}, /* Brown2, ad hoc */
{0xff, 0x80, 0x80}, /* Pink4, ad hoc */
{0xff, 0xa0, 0xa0}, /* Pink3, ad hoc */
{0xff, 0xc0, 0xc0}, /* Pink2, ad hoc */
{0xff, 0xe0, 0xe0}, /* Pink, ad hoc */
{0xff, 0xd7, 0x00} /* Gold [as in rgb.txt] */
};
|