JColorfulConsole/README.md

18 lines
451 B
Markdown
Raw Normal View History

2022-03-24 23:55:37 +00:00
## 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
```