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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
/* The 16 standard colors (ANSI, ISO 6429) supported by the Tektronix mode
of MS-DOS Kermit. (Reportedly `color xterm' supports them too, but
maybe not in Tektronix emulation mode?)
It includes the 8 standard colors (vertices of the RGB cube). It also
includes an intermediate brightness for each of the 6 colors other than
black and white, and two intermediate brightnesses for white (i.e., two
shades of gray intermediate between black and white). The two shades of
gray are the only colors in the interior of the cube. */
#include "sys-defines.h"
#include "extern.h"
const plColor _kermit_stdcolors[KERMIT_NUM_STD_COLORS] =
{
{0x00, 0x00, 0x00}, /* black */
{0x8b, 0x00, 0x00}, /* red4 */
{0x00, 0x8b, 0x00}, /* green4 */
{0x8b, 0x8b, 0x00}, /* yellow4 */
{0x00, 0x00, 0x8b}, /* blue4 */
{0x8b, 0x00, 0x8b}, /* magenta4 */
{0x00, 0x8b, 0x8b}, /* cyan4 */
{0x8b, 0x8b, 0x8b}, /* gray55 */
{0x4d, 0x4d, 0x4d}, /* gray30 */
{0xff, 0x00, 0x00}, /* red */
{0x00, 0xff, 0x00}, /* green */
{0xff, 0xff, 0x00}, /* yellow */
{0x00, 0x00, 0xff}, /* blue */
{0xff, 0x00, 0xff}, /* magenta */
{0x00, 0xff, 0xff}, /* cyan */
{0xff, 0xff, 0xff} /* white */
};
/* Ordering of these two lists of ANSI escape sequences must match the
above. */
const char * const _kermit_fgcolor_escapes[KERMIT_NUM_STD_COLORS] =
{
"\033[0;30m", /* black */
"\033[0;31m", /* red4 */
"\033[0;32m", /* green4 */
"\033[0;33m", /* yellow4 */
"\033[0;34m", /* blue4 */
"\033[0;35m", /* magenta4 */
"\033[0;36m", /* cyan4 */
"\033[0;37m", /* gray55 */
"\033[1;30m", /* gray30 */
"\033[1;31m", /* red */
"\033[1;32m", /* green */
"\033[1;33m", /* yellow */
"\033[1;34m", /* blue */
"\033[1;35m", /* magenta */
"\033[1;36m", /* cyan */
"\033[1;37m" /* white */
};
const char * const _kermit_bgcolor_escapes[KERMIT_NUM_STD_COLORS] =
{
"\033[0;40m", /* black */
"\033[0;41m", /* red4 */
"\033[0;42m", /* green4 */
"\033[0;43m", /* yellow4 */
"\033[0;44m", /* blue4 */
"\033[0;45m", /* magenta4 */
"\033[0;46m", /* cyan4 */
"\033[0;47m", /* gray55 */
"\033[1;40m", /* gray30 */
"\033[1;41m", /* red */
"\033[1;42m", /* green */
"\033[1;43m", /* yellow */
"\033[1;44m", /* blue */
"\033[1;45m", /* magenta */
"\033[1;46m", /* cyan */
"\033[1;47m" /* white */
};
|