From 90035288977beef8d14ffa39b5a639b612e94e86 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Thu, 14 Mar 2024 10:57:09 +0100 Subject: [PATCH] colors.h added --- colors.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 colors.h diff --git a/colors.h b/colors.h new file mode 100644 index 0000000..c2bc46a --- /dev/null +++ b/colors.h @@ -0,0 +1,22 @@ +#ifndef _COLORS_H_ +#define _COLORS_H_ + + +#define _off 0x00 +#define _blue 0x01 +#define _green 0x02 +#define _orange 0x03 +#define _rose 0x04 +#define _magenta 0x05 +#define _violet 0x06 +#define _azure 0x07 +#define _cyan 0x08 +#define _springgreen 0x09 +#define _chartreuse 0x0a +#define _yellow 0x0b +#define _white 0x0c +#define _red 0x0d + + + +#endif