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