From 7bba6cd7612293796e905885f9ed3072877798ab Mon Sep 17 00:00:00 2001 From: davidovski Date: Mon, 27 Jun 2022 01:14:42 +0100 Subject: added shmk, building all with shmk --- src/lib/colors.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 src/lib/colors.h (limited to 'src/lib/colors.h') diff --git a/src/lib/colors.h b/src/lib/colors.h new file mode 100644 index 0000000..e7bc26d --- /dev/null +++ b/src/lib/colors.h @@ -0,0 +1,45 @@ +/* + * colors.h + * + * list of ansi color codes + * provided by xiutils + * + */ + +#define RESET "" +#define BOLD "" +#define BLACK "" +#define RED "" +#define GREEN "" +#define YELLOW "" +#define BLUE "" +#define MAGENTA "" +#define CYAN "" +#define WHITE "" +#define DEFAULT "" +#define BG_BLACK "" +#define BG_RED "" +#define BG_GREEN "" +#define BG_YELLOW "" +#define BG_BLUE "" +#define BG_MAGENTA "" +#define BG_CYAN "" +#define BG_WHITE "" +#define BG_DEFAULT "" +#define LIGHT_BLACK "" +#define LIGHT_RED "" +#define LIGHT_GREEN "" +#define LIGHT_YELLOW "" +#define LIGHT_BLUE "" +#define LIGHT_MAGENTA "" +#define LIGHT_CYAN "" +#define LIGHT_WHITE "" +#define LIGHT_DEFAULT "" +#define BOLDBLACK "" +#define BOLDRED "" +#define BOLDGREEN "" +#define BOLDYELLOW "" +#define BOLDBLUE "" +#define BOLDMAGENTA "" +#define BOLDCYAN "" +#define BOLDWHITE "" -- cgit v1.2.1