90s/color.h

11 lines
198 B
C
Raw Normal View History

2024-01-31 02:02:32 +01:00
#ifndef COLOR_H_
#define COLOR_H_
const char *lavender = "174;174;255";
const char *pink = "255;210;239";
const char *blue = "137;180;250";
void color_text(char str[], const char *color);
#endif