90s/include/color.h

11 lines
199 B
C
Raw Permalink 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";
2024-02-11 00:31:29 +01:00
char *color_text(char str[], const char *color);
2024-01-31 02:02:32 +01:00
#endif