90s/color.h
2024-01-31 01:02:32 +00:00

10 lines
198 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";
void color_text(char str[], const char *color);
#endif