Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fade

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fade

This modules allows you to fade ASCII art text with different themes.

  • 0.0.9
  • PyPI
  • Socket score

Maintainers
1

FADE TEXT

# Module made by @venaxyt on Github
import fade

text = """

"""
# Fading a ascii art text (black-white)
faded_text = fade.blackwhite(text)
print(faded_text)
>>> Output :

# Fading a ascii art text (purple-pink)
faded_text = fade.purplepink(text)
print(faded_text)
>>> Output :

# Fading a ascii art text (green-blue)
faded_text = fade.greenblue(text)
print(faded_text)
>>> Output :

# Fading a ascii art text (darkblue-blue)
faded_text = fade.water(text)
print(faded_text)
>>> Output :

# Fading a ascii art text (yellow-red)
faded_text = fade.fire(text)
print(faded_text)
>>> Output :

# Fading a ascii art text (pink-red)
faded_text = fade.pinkred(text)
print(faded_text)
>>> Output :

# Fading a ascii art text (purple-blue)
faded_text = fade.purpleblue(text)
print(faded_text)
>>> Output :

# Fading a ascii art text (green-yellow)
faded_text = fade.brazil(text)
print(faded_text)
>>> Output :

# Fading a ascii art text (random)
faded_text = fade.random(text)
print(faded_text)
>>> Output :

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc