18 lines
516 B
C
18 lines
516 B
C
#ifndef CONTROLLER_COLORS_H
|
|
#define CONTROLLER_COLORS_H
|
|
|
|
#define COLOR_RED "\033[0;31m"
|
|
#define COLORB_RED "\033[1;31m"
|
|
#define COLOR_GREEN "\033[0;32m"
|
|
#define COLORB_GREEN "\033[1;32m"
|
|
#define COLOR_YELLOW "\033[0;33m"
|
|
#define COLORB_YELLOW "\033[1;33m"
|
|
#define COLOR_BLUE "\033[0;34m"
|
|
#define COLORB_BLUE "\033[1;34m"
|
|
#define COLOR_MAGENTA "\033[0;35m"
|
|
#define COLORB_MAGENTA "\033[1;35m"
|
|
#define COLOR_CYAN "\033[0;36m"
|
|
#define COLORB_CYAN "\033[1;36m"
|
|
#define COLOR_NONE "\033[0m"
|
|
|
|
#endif //CONTROLLER_COLORS_H
|