Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
a13xe authored Feb 19, 2024
1 parent 0672dbf commit 36e6a5a
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,21 +58,22 @@ int main()
{
// system("cls"); // on Windows

colorized_print("white text on black bg", WHITE, BLACK, 0);
colorized_print("bold white text on black bg", WHITE, BLACK, 1);
colorized_print("white text on black bg\n", WHITE, BLACK, 0);
colorized_print("bold white text on black bg\n", WHITE, BLACK, 1);

colorized_print("black text on white bg", BLACK, WHITE, 0);
colorized_print("bold black text on white bg", BLACK, WHITE, 1);
colorized_print("black text on white bg\n", BLACK, WHITE, 0);
colorized_print("bold black text on white bg\n", BLACK, WHITE, 1);

colorized_print("red text on cyan bg", RED, CYAN, 0);
colorized_print("bold red text on cyan bg", RED, CYAN, 1);
colorized_print("red text on cyan bg\n", RED, CYAN, 0);
colorized_print("bold red text on cyan bg\n", RED, CYAN, 1);

colorized_print("blue text on green bg", BLUE, GREEN, 0);
colorized_print("bold blue text on green bg", BLUE, GREEN, 1);
colorized_print("blue text on green bg\n", BLUE, GREEN, 0);
colorized_print("bold blue text on green bg\n", BLUE, GREEN, 1);

colorized_print("magenta text on yellow bg", MAGENTA, YELLOW, 0);
colorized_print("bold magenta text on yellow bg", MAGENTA, YELLOW, 1);
colorized_print("magenta text on yellow bg\n", MAGENTA, YELLOW, 0);
colorized_print("bold magenta text on yellow bg\n", MAGENTA, YELLOW, 1);

system("pause");
return 0;
}
```
Expand Down

0 comments on commit 36e6a5a

Please sign in to comment.