and provide guidance. For example Green (Success); Red
(Error); Yellow (Information) .. https://www.theurbanpenguin.com/4184-2/ */
void red() {
printf("\033[1;31m");
}
void yellow() {
printf("\033[1;33m");
}
void green() {
printf("\033[0;32m");
}
void cyan() {
printf("\033[0;36m");
}
void underline() {
printf("\033[4m");
}
//Resets colours back to normal
void reset() {
printf("\033[0m");
}