This commit is contained in:
Your Name 2023-12-28 15:34:03 +03:00
parent d7047ceb1e
commit 7f7ca8c507
2 changed files with 13 additions and 12 deletions

View file

@ -103,7 +103,7 @@ int PrintColors(const char *title, const FETCH fetch) {
printf("%s%s%s", fetch.color, title, fetch.font_color);
for (int i = 1; i < 7; i++)
printf("\033[1;3%dm%s\033[0m \033[0;3%dm%s\033[0m ", i, PC_CHAR, i, PC_CHAR);
printf("\033[1;3%dm%s\033[0m ", i, PC_CHAR);
return 0;
}