home *** CD-ROM | disk | FTP | other *** search
- /* colors.h
- *
- * This is a header for the C toolbox. It defines colors and monochrome
- * attributes.
- *
- */
-
-
- #define BLACK 0
- #define BLUE 1
- #define GREEN 2
- #define CYAN 3
- #define RED 4
- #define MAGENTA 5
- #define BROWN 6
- #define GRAY 7
- #define GREY 7
- #define WHITE 7
- #define DARK_GREY 8
- #define DARK_GRAY 8
- #define LTBLUE 9
- #define LTGREEN 10
- #define LTCYAN 11
- #define LTRED 12
- #define LTMAGENTA 13
- #define LTBROWN 14
- #define YELLOW 14
- #define LTWHITE 15
-
- #define NORMAL 0X07
- #define UNDERLINE 0x01
- #define REVERSE 0x70
- #define BRIGHT 0x08
- #define BLINK 0x80
-