From 1e82997daab7c302c8b90ebc57b1cce5bd55a518 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 1 May 2022 15:59:36 +0100 Subject: moved generated colours to main project --- src/colors.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 src/colors.h (limited to 'src/colors.h') diff --git a/src/colors.h b/src/colors.h new file mode 100644 index 0000000..e7bc26d --- /dev/null +++ b/src/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