JColorfulConsole/README.md
2022-03-25 01:57:26 +02:00

18 lines
No EOL
476 B
Markdown

## 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(TextColor.LIGHT_RED); // Set text color
manager.setBackgroundColor(BackgroundColor.DARK_BLUE); // Set background color
manager.println("Hello World!"); // Print text
```