10 lines
199 B
C
10 lines
199 B
C
#ifndef COLOR_H_
|
|
#define COLOR_H_
|
|
|
|
const char *lavender = "174;174;255";
|
|
const char *pink = "255;210;239";
|
|
const char *blue = "137;180;250";
|
|
|
|
char *color_text(char str[], const char *color);
|
|
|
|
#endif
|