diff --git a/lib/mdsanima.c b/lib/mdsanima.c index 790ebc3..7b92cfd 100644 --- a/lib/mdsanima.c +++ b/lib/mdsanima.c @@ -8,5 +8,5 @@ void cprint(const char *text, int foreground, int background) { - printf("\e[38;5;%dm\e[48;5;%dm%s\e[0m\n", foreground, background, text); + printf("\e[38;5;%dm\e[48;5;%dm\e[1m%s\e[0m\n", foreground, background, text); } diff --git a/lib/mdsanima.h b/lib/mdsanima.h index 95e6297..78f2483 100644 --- a/lib/mdsanima.h +++ b/lib/mdsanima.h @@ -11,7 +11,7 @@ * * @note Wrapper for the ANSI escape sequence, where 0 is black and 255 is white. * - * @param text The text message to stdout print in the color on the terminal. + * @param text The bold text message to stdout print in the color on the terminal. * @param foreground The foreground color of the text message. A number from 0 to 255. * @param background The background color of the text message. A number from 0 to 255. */