Skip to content

Commit 56d515c

Browse files
add: colorma library experimentation
Learning about the concept of ANSI and mac and unix systems with windows32 api call.
1 parent 15b058b commit 56d515c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

colorma_as_color.py

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import colorama as color
2+
3+
4+
from colorama import Fore, Back, Style
5+
6+
print(Fore.RED + "some red text")
7+
print(Back.GREEN + "and with a green background")
8+
print("So any text will be in green background?")
9+
10+
print("So is it a wrapper of some sort?")
11+
print("dark_angel wasn't using it in her code.")
12+
print("she was just being using direct ANSI codes.")
13+
print(Style.RESET_ALL)
14+
print(Fore.BRIGHT_RED + "some bright red text")
15+
print(Back.WHITE + "and with a white background")
16+
print("Will need to study about what is ANSI codes.")
17+
print(Style.DIM + "and in dim text")
18+
print(Style.RESET_ALL)
19+
print("back to normal now")
20+
21+
22+
# …or, Colorama can be used in conjunction with existing ANSI libraries such as the venerable Termcolor the fabulous Blessings, or the incredible _Rich.

0 commit comments

Comments
 (0)