14Srgrimes/*
24Srgrimes * IBM PC display definitions
3621Srgrimes *
450477Speter * $FreeBSD$
54Srgrimes */
64Srgrimes
74Srgrimes/* Color attributes for foreground text */
84Srgrimes
94Srgrimes#define	FG_BLACK		   0
104Srgrimes#define	FG_BLUE			   1
114Srgrimes#define	FG_GREEN		   2
124Srgrimes#define	FG_CYAN			   3
134Srgrimes#define	FG_RED			   4
144Srgrimes#define	FG_MAGENTA		   5
154Srgrimes#define	FG_BROWN		   6
164Srgrimes#define	FG_LIGHTGREY		   7
174Srgrimes#define	FG_DARKGREY		   8
184Srgrimes#define	FG_LIGHTBLUE		   9
194Srgrimes#define	FG_LIGHTGREEN		  10
204Srgrimes#define	FG_LIGHTCYAN		  11
214Srgrimes#define	FG_LIGHTRED		  12
224Srgrimes#define	FG_LIGHTMAGENTA		  13
234Srgrimes#define	FG_YELLOW		  14
244Srgrimes#define	FG_WHITE		  15
254Srgrimes#define	FG_BLINK		0x80
264Srgrimes
274Srgrimes/* Color attributes for text background */
284Srgrimes
294Srgrimes#define	BG_BLACK		0x00
304Srgrimes#define	BG_BLUE			0x10
314Srgrimes#define	BG_GREEN		0x20
324Srgrimes#define	BG_CYAN			0x30
334Srgrimes#define	BG_RED			0x40
344Srgrimes#define	BG_MAGENTA		0x50
354Srgrimes#define	BG_BROWN		0x60
364Srgrimes#define	BG_LIGHTGREY		0x70
374Srgrimes
384Srgrimes/* Monochrome attributes for foreground text */
394Srgrimes
404Srgrimes#define	FG_UNDERLINE		0x01
414Srgrimes#define	FG_INTENSE		0x08
424Srgrimes
434Srgrimes/* Monochrome attributes for text background */
444Srgrimes
454Srgrimes#define	BG_INTENSE		0x10
46