UwU
there is vertical and horizontal gratients you can use
vertical example:
from ab5 import vgratient
logo = '''
__ __ __ __
/ / / / __/ / / /
/ / / / | /| / / / / /
/ /_/ /| |/ |/ / /_/ /
\____/ |__/|__/\____/
'''
start_color=[0,223,50]
end_color=[0,25,222]
print(vgratient(logo,start_color,end_color))
horizontal example:
from ab5 import hgratient
logo = '''
__ __ __ __
/ / / / __/ / / /
/ / / / | /| / / / / /
/ /_/ /| |/ |/ / /_/ /
\____/ |__/|__/\____/
'''
start_color=[0,223,50]
end_color=[0,25,222]
print(hgratient(logo,start_color,end_color))