Added constant colors directly to the Colors module. Now you can do this:
python from log21 import print from log21.colors import GREEN, WHITE, RED
print(GREEN + 'This' + WHITE + ' is' + RED + ' Red')
2.5.3
Moved some dictionaries to `__init__` methods. `colors` in `Argparse.ColorizingHelpFormatter` class. `_level_name` in `Formatters._Formatter` class and `level_colors` in `Formatters.ColorizingFormatter` class. `sign_colors` in `PPrint.PrettyPrinter` class. `colors` in `TreePrint.TreePrint.Node` class.
2.5.2
Improved type-hintings.
2.5.1
Switched from `setup.py` build system to `pyproject.toml`
2.5.0
Added `level_colors` argument to `log21.get_logger` function with will be passed to the formatter and allows user to set custom level colors while making a new logger. Also changed most `Dict` type hints to be `Mapping` and `list` to `Sequence` to make the functions more general and less strict.