Skip to content
This repository was archived by the owner on Mar 19, 2025. It is now read-only.

Commit e71c1a4

Browse files
authored
Update readme
1 parent ccb56b8 commit e71c1a4

1 file changed

Lines changed: 22 additions & 10 deletions

File tree

README.md

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,32 @@
22

33
#### _A completely useless library for terminal styling._
44

5-
# **Why should I use this for terminal styling?**
5+
## **Why should I use this for terminal styling?**
66

7-
- Whenever you feel insane.
7+
- Sometimes, you will feel like you're insane and would wanna hit your head on the table multiple times. So, TerCol's there if that happens.
88

9-
# **What features does this library have?**
9+
## **What features does this library have?**
1010

11-
- Everything other libraries have.
11+
- Everything other libraries have, except for rainbowtext().
1212

13-
# **How do I use this?**
14-
import tercol
15-
print(tercol.red('Red text'))
16-
print(tercol.blue('Blue text'))
17-
print(tercol.rgb(255, 215, 0, 'Gold text using RGB'))
18-
print(tercol.hex('#ffd700', 'Gold text using HEX'))
13+
## **How do I use this?**
14+
15+
```python
16+
import tercol
17+
18+
print(tercol.red('Red text'))
19+
print(tercol.blue('Blue text'))
20+
print(tercol.rgb(255, 215, 0, 'Gold text using RGB'))
21+
print(tercol.hex('#ffd700', 'Gold text using HEX'))
22+
print(tercol.rainbowtext('Rainbow text!'))
23+
24+
# it's that simple.
25+
```
26+
27+
maybe try running this too at the terminal
28+
```
29+
py -m tercol
30+
```
1931

2032
that's all
2133

0 commit comments

Comments
 (0)