18 lines
351 B
C
18 lines
351 B
C
/* 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
|