Quick python reference for terminal color escape codes
Install options:
-
Install the package
clicolor
-
Add as a submodule
git submodule add https://github.com/camas/clicolor
- Or just copy
cli.py
andLICENSE
somewhere
Then from clicolor.cli import CLI, ...
print(f"{CLI.BG_YELLOW}{CLI.GREEN}Green on yellow.{CLI.RESET}")
print(f"{CLI.BOLD}{CLI.RED}Bold red.{CLI.RESET}")
print(f"{CLIT.bg(128,0,0)}{CLIT.fg(255,99,71)}Truecolor tomato red on maroon red background{CLI.RESET}")
use test.py to run a variety of tests including modifiers, 8/16 colors, 256 colors and Truecolors.