[READ-ONLY] Mirror of https://github.com/probablykasper/colorboy-py. python package - Easily add color to your strings pypi.org/project/colorboy
ansi cli color package terminal
0

Configure Feed

Select the types of activity you want to include in your feed.

colorboy-py / test.py
252 B 12 lines
1from colorboy import bg_colors 2import colorboy as cb 3from colorboy import * 4 5def test(): 6 print(cb.cyan('Globgogabgalab')) 7 8 print(bg_colors.red_bg('PogChamp')) 9 10 print(bright(green('Crywolf'))) 11 print(cyan_bg(black('Pog'))) 12 print(green('EDEN'))