ColorGradText is a Python module that allows you to apply amazing color gradients to text and ASCII art in your terminal.
It supports horizontal and vertical gradients, works with multi-line text, and comes with 10 creative gradient presets.
Default direction is "horizontal", so there's no need to add this line.
from colorgradtext import aqua_wave
text = "Og_Ten"
print(aqua_wave(text))
from colorgradtext import lime_light
ascii = r"""
____ _____ _______ ______ _ _
/ __ \ / ____| |__ __| ____| \ | |
| | | | | __ | | | |__ | \| |
| | | | | |_ | | | | __| | . ` |
| |__| | |__| | | | | |____| |\ |
\____/ \_____| _______ |_| |______|_| \_|
|_______|
"""
print(lime_light(ascii, direction="vertical"))










