kennethreitz / crayons

Text UI colors for Python.
https://pypi.python.org/pypi/crayons
MIT License
424 stars 30 forks source link

Allow customize color replacement. #24

Closed frostming closed 5 years ago

frostming commented 5 years ago

This is useful when working in a dark background or native powershell.

Example usage:

import crayons

crayons.replace_colors({'black': 'magenta', 'blue': 'cyan'})
frostming commented 5 years ago

@MasterOdin Thanks for the review, I've pushed more commits to fix the issues.