1/*-
2 * Copyright (c) 2003 Jake Burkholder.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD$
27 */
28
29#ifndef	_MACHINE_SC_MACHDEP_H_
30#define	_MACHINE_SC_MACHDEP_H_
31
32/* Color attributes for foreground text */
33
34#define	FG_BLACK		0x0
35#define	FG_BLUE			0x1
36#define	FG_GREEN		0x2
37#define	FG_CYAN			0x3
38#define	FG_RED			0x4
39#define	FG_MAGENTA		0x5
40#define	FG_BROWN		0x6
41#define	FG_LIGHTGREY		0x7	/* aka white */
42#define	FG_DARKGREY		0x8
43#define	FG_LIGHTBLUE		0x9
44#define	FG_LIGHTGREEN		0xa
45#define	FG_LIGHTCYAN		0xb
46#define	FG_LIGHTRED		0xc
47#define	FG_LIGHTMAGENTA		0xd
48#define	FG_YELLOW		0xe
49#define	FG_WHITE		0xf	/* aka bright white */
50#define	FG_BLINK		0x80
51
52/* Color attributes for text background */
53
54#define	BG_BLACK		0x00
55#define	BG_BLUE			0x10
56#define	BG_GREEN		0x20
57#define	BG_CYAN			0x30
58#define	BG_RED			0x40
59#define	BG_MAGENTA		0x50
60#define	BG_BROWN		0x60
61#define	BG_LIGHTGREY		0x70
62#define	BG_DARKGREY		0x80
63#define	BG_LIGHTBLUE		0x90
64#define	BG_LIGHTGREEN		0xa0
65#define	BG_LIGHTCYAN		0xb0
66#define	BG_LIGHTRED		0xc0
67#define	BG_LIGHTMAGENTA		0xd0
68#define	BG_YELLOW		0xe0
69#define	BG_WHITE		0xf0
70
71#endif /* !_MACHINE_SC_MACHDEP_H_ */
72