Fix thr sample code

This commit is contained in:
Anas Elgarhy 2022-03-25 01:57:26 +02:00
parent 6d6b76457c
commit 139f951ebf
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@
### Usage:
```java
ConsoleManager manager = new DefaultConsoleManager(); // Create a new console manager
manager.setTextColor(Color.RED); // Set text color
manager.setBackgroundColor(Color.BLUE); // Set background color
manager.setTextColor(TextColor.LIGHT_RED); // Set text color
manager.setBackgroundColor(BackgroundColor.DARK_BLUE); // Set background color
manager.println("Hello World!"); // Print text
```