Metadata-Version: 2.1
Name: xterm256-colors
Version: 0.1.0
Summary: Handy utilities for interacting with xterm-256color terminal emulators
Home-page: https://github.com/theY4Kman/xterm256-colors
Author: Zach "theY4Kman" Kanzler
Author-email: they4kman@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Provides-Extra: colormath
Requires-Dist: colormath (>=3.0.0,<4.0.0); extra == "colormath"
Project-URL: Repository, https://github.com/theY4Kman/xterm256-colors
Description-Content-Type: text/markdown

# xterm256-colors

Easily colorize text printed to an xterm-256color terminal emulator

```python
from xterm256_colors import Fore256, Back256

print(Fore256.CHARTREUSE1('Hello,'), Back256.HOTPINK('World!'))
```

![Screenshot of example code output](.images/xterm256-colors-example.png)


# Installation
```shell
pip install xterm256-colors
```

