90s

Minimalist, customizable shell written in C99 with syntax highlighting
git clone https://codeberg.org/night0721/90s
Log | Files | Refs | README | LICENSE

color.h (199B)


      1 #ifndef COLOR_H_
      2 #define COLOR_H_
      3 
      4 const char *lavender = "174;174;255";
      5 const char *pink = "255;210;239";
      6 const char *blue = "137;180;250";
      7 
      8 char *color_text(char str[], const char *color);
      9 
     10 #endif