Metadata-Version: 2.4
Name: pygradientify
Version: 1.0.0
Summary: make terminal ui's beautiful.
Author: sorrow
License: MIT
Project-URL: Homepage, https://github.com/xsorroww/pygradientify
Project-URL: Source, https://github.com/xsorroww/pygradientify
Project-URL: Issues, https://github.com/xsorroww/pygradientify/issues
Keywords: gradient,terminal,ansi,rgb,color
Requires-Python: >=3.8
Description-Content-Type: text/markdown


# pygradient

make terminal UI'S beautiful.



## Installation

Install my-project with npm

```bash
pip install pygradient

pacman -S python-pygradient
```
    
## Usage / examples

```python
from pygradientify import Colors

"""
normal print
"""
print(Colors.red_to_blue("Hello World!"))
print(Colors.mystic("Hello World!"))

"""
ascii art print
"""
art = """
╔═╗╦ ╦╔═╗╦═╗╔═╗╔╦╗╦╔═╗╔╗╔╔╦╗╦╔═╗╦ ╦
╠═╝╚╦╝║ ╦╠╦╝╠═╣ ║║║║╣ ║║║ ║ ║╠╣ ╚╦╝
╩   ╩ ╚═╝╩╚═╩ ╩═╩╝╩╚═╝╝╚╝ ╩ ╩╚   ╩ 
"""

print(Colors.blue_to_cyan(art))
print(Colors.purple_to_white(art))
print(Colors.orange_to_pink(art))

"""
all colors.
"""
for gradients in Colors.colors:
    grad = getattr(Colors, gradients)
    print(grad(f"{gradients}: The quick brown fox jumps over the lazy dog"))
```
