blob: 0f37a8e72f4faee5d5118fa94a5d41769292d7eb [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001// MorgenGrauen MUDlib
2//
3// ansi.h -- Sequenzen fuer ANSI- und VT100-Terminals
4//
5// $Id: ansi.h,v 3.3 2000/02/12 16:18:42 Padreic Exp $
6
7#ifndef _ANSI_
8#define _ANSI_
9
Zesstra3a261e52022-02-10 14:00:31 +010010// the first 5 are also supported by VT100
MG Mud User88f12472016-06-24 23:31:02 +020011#define ANSI_BOLD ""
12#define ANSI_UNDERL ""
13#define ANSI_BLINK ""
14#define ANSI_INVERS ""
15
Zesstra3a261e52022-02-10 14:00:31 +010016#define ANSI_NORMAL ""
17
18// From here on only supported by ANSI
MG Mud User88f12472016-06-24 23:31:02 +020019#define ANSI_BLACK ""
20#define ANSI_RED ""
21#define ANSI_GREEN ""
22#define ANSI_YELLOW ""
23#define ANSI_BLUE ""
24#define ANSI_PURPLE ""
25#define ANSI_CYAN ""
26#define ANSI_WHITE ""
27
28#define ANSI_BG_BLACK ""
29#define ANSI_BG_RED ""
30#define ANSI_BG_GREEN ""
31#define ANSI_BG_YELLOW ""
32#define ANSI_BG_BLUE ""
33#define ANSI_BG_PURPLE ""
34#define ANSI_BG_CYAN ""
35#define ANSI_BG_WHITE ""
36
MG Mud User88f12472016-06-24 23:31:02 +020037#endif