Metadata-Version: 2.1
Name: fade
Version: 0.0.3
Summary: This modules allows you to fade ASCII art text with different colors.
Home-page: https://github.com/venaxyt/fade
Author: Venax
Author-email: venaxumofficial@gmail.com
License: MIT
Keywords: fade
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

> # FADE TEXT
```
# Module made by @venaxyt on Github
import fade

text = """
 __   _____  _   _ ____    _____ _______  _______ 
 \ \ / / _ \| | | |  _ \  |_   _| ____\ \/ /_   _|
  \ V / | | | | | | |_) |   | | |  _|  \  /  | |  
   | || |_| | |_| |  _ <    | | | |___ /  \  | |  
   |_| \___/ \___/|_| \_\   |_| |_____/_/\_\ |_|
"""
```
```
# Fading a ascii art text (purple-pink)
faded_text = fade.purplepink(text)
print(faded_text)
>>> Output :
```
> ![](https://raw.githubusercontent.com/venaxyt/fade/main/images/purple-pink.PNG)
```
# Fading a ascii art text (blue-green)
faded_text = fade.bluegreen(text)
print(faded_text)
>>> Output :
```
> ![](https://raw.githubusercontent.com/venaxyt/fade/main/images/blue-green.PNG)
```
# Fading a ascii art text (darkblue-blue)
faded_text = fade.water(text)
print(faded_text)
>>> Output :
```
> ![](https://raw.githubusercontent.com/venaxyt/fade/main/images/marin.PNG)
```
# Fading a ascii art text (yellow-red)
faded_text = fade.fire(text)
print(faded_text)
>>> Output :
```
> ![](https://raw.githubusercontent.com/venaxyt/fade/main/images/fire.PNG)

