Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/qmt1/coloriz

BEAUTYFUL COLOR LIBRARY (PYTHON)
https://github.com/qmt1/coloriz

color coloriz package pip python python3

Last synced: 28 days ago
JSON representation

BEAUTYFUL COLOR LIBRARY (PYTHON)

Awesome Lists containing this project

README

        

# Coloriz
https://pypi.org/project/coloriz
https://github.com/qmt1/coloriz

# USE

# Gradient

```python
from coloriz import Color

print(Color.gradient(Color.blue_to_red,"""
YOUR ASCII ART
"""))

```

# Custom

```python
from coloriz import Color

print(Color.custom("""
YOUR ASCII ART
""",Color.BLUE,Color.MAGENTA))

```

# Basic

```python
from coloriz import Color

print(Color.RED + 'TEXT')

```