11 lines
195 B
C
11 lines
195 B
C
#ifndef __COLORS_H__
|
|
#define __COLORS_H__
|
|
|
|
#define RED "\033[31m"
|
|
#define GREEN "\033[32m"
|
|
#define YELLOW "\033[33m"
|
|
#define BLUE "\033[34m"
|
|
#define BOLD "\033[1m"
|
|
#define RESET "\033[0m"
|
|
|
|
#endif |