c-repl/src/include/colors.h

17 lines
510 B
C
Raw Normal View History

2023-10-20 17:06:27 +02:00
#include <stdio.h>
#ifndef DEF_COLORS_H
#define DEF_COLORS_H
#define RESET "\033[0m"
#define BLACK "\033[30m" /* Black */
#define RED "\033[31m" /* Red */
#define GREEN "\033[32m" /* Green */
#define YELLOW "\033[33m" /* Yellow */
#define BLUE "\033[34m" /* Blue */
#define MAGENTA "\033[35m" /* Magenta */
#define CYAN "\033[36m" /* Cyan */
#define WHITE "\033[37m" /* White */
#define BOLD "\033[1m" /* BOLD */
#endif