13 lines
454 B
C
13 lines
454 B
C
#ifndef INCLUDE_DI_LOG_DECORATE_H_
|
|
#define INCLUDE_DI_LOG_DECORATE_H_
|
|
|
|
#define DI_LOG_DECORATE_COLOR_RED "\x1b[31m"
|
|
#define DI_LOG_DECORATE_COLOR_GREEN "\x1b[32m"
|
|
#define DI_LOG_DECORATE_COLOR_YELLOW "\x1b[33m"
|
|
#define DI_LOG_DECORATE_COLOR_BLUE "\x1b[34m"
|
|
#define DI_LOG_DECORATE_COLOR_MAGENTA "\x1b[35m"
|
|
#define DI_LOG_DECORATE_COLOR_CYAN "\x1b[36m"
|
|
#define DI_LOG_DECORATE_COLOR_RESET "\x1b[0m"
|
|
|
|
#endif /* INCLUDE_DI_LOG_DECORATE_H_ */
|