Add readme file 🗒

This commit is contained in:
Anas Elgarhy 2022-03-25 01:55:37 +02:00
parent 741280d306
commit 6d6b76457c

18
README.md Normal file
View file

@ -0,0 +1,18 @@
## JColorfulConsole
### JColorfulConsole is a console color library.
### Features:
- Support text color.
- Support background color.
- Support text style.
### 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.println("Hello World!"); // Print text
```