Skip to content

Commit

Permalink
Improving the Easter Egg
Browse files Browse the repository at this point in the history
  • Loading branch information
rzc0d3r committed Aug 1, 2024
1 parent 31c8890 commit 308cf2f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,15 @@
colored_logo = ''
colors = [getattr(Fore, attr) for attr in dir(Fore) if not attr.startswith('__')]
colors.remove(Fore.BLACK)
colors.remove(Fore.WHITE)
colors.remove(Fore.LIGHTWHITE_EX)
for line in LOGO.split('\n'):
for ch in line:
color = random.choice(colors)
colored_logo += (color+ch+Fore.RESET)
colored_logo += '\n'
LOGO = colored_logo[:-1]
colored_logo += f'{Fore.GREEN}rzc0d3r{Fore.RESET} celebrates his {Fore.LIGHTRED_EX}birthday{Fore.RESET} today!!! :)\n'
LOGO = colored_logo

# -- Quick settings [for Developers to quickly change behavior without changing all files] --
DEFAULT_EMAIL_API = '1secmail'
Expand Down

0 comments on commit 308cf2f

Please sign in to comment.