This commit is contained in:
2023-03-30 10:05:31 -04:00
commit ca842a3235
5 changed files with 194 additions and 0 deletions

17
src/libcolor.h Normal file
View File

@@ -0,0 +1,17 @@
/* libcolor.h - header file to define colors */
#ifndef LIBCOLOR_H_
#define LIBCOLOR_H_
#define TXT_BOLD "\e[1m"
#define TXT_RESET "\e[m"
#define COL_RED "\x1b[31m"
#define COL_GREEN "\x1b[32m"
#define COL_YELLOW "\x1b[33m"
#define COL_BLUE "\x1b[34m"
#define COL_MAGENTA "\x1b[35m"
#define COL_CYAN "\x1b[36m"
#define COL_RESET "\x1b[0m"
#endif