mirror of
https://github.com/lllin000/PaperForge.git
synced 2026-07-22 06:50:53 +00:00
fix: replace logo with correct PAPERFORGE ASCII art
This commit is contained in:
parent
0d900db007
commit
e8a37245f3
1 changed files with 10 additions and 27 deletions
|
|
@ -67,34 +67,17 @@ def print_slow(text, delay=0.01):
|
|||
|
||||
|
||||
def draw_logo():
|
||||
"""Draw the PaperForge ASCII logo with PAPERFORGE text."""
|
||||
"""Draw the PaperForge ASCII logo."""
|
||||
logo = f"""
|
||||
{Colors.BRIGHT_YELLOW} ▄███████████▄ {Colors.END}
|
||||
{Colors.BRIGHT_YELLOW} ▄██▀{Colors.BOLD} ▀███▀ {Colors.END}{Colors.BRIGHT_YELLOW}▀██▄ {Colors.END}
|
||||
{Colors.BRIGHT_YELLOW} █▀{Colors.END} ███ {Colors.BRIGHT_YELLOW}▀█ {Colors.END}
|
||||
{Colors.BRIGHT_YELLOW} █{Colors.END} ███ ███ ███ {Colors.BRIGHT_YELLOW}█ {Colors.END}
|
||||
{Colors.BRIGHT_YELLOW} █{Colors.END} ███ ███ ███ {Colors.BRIGHT_YELLOW}█ {Colors.END}
|
||||
{Colors.BRIGHT_YELLOW} █{Colors.END} ███ ███ ███ {Colors.BRIGHT_YELLOW}█ {Colors.END}
|
||||
{Colors.BRIGHT_YELLOW} █{Colors.END} █████ {Colors.BRIGHT_YELLOW}█ {Colors.END}
|
||||
{Colors.BRIGHT_YELLOW} ▀██{Colors.END} █████ {Colors.BRIGHT_YELLOW}▄██▀ {Colors.END}
|
||||
{Colors.BRIGHT_YELLOW} ▀███████████▀ {Colors.END}
|
||||
{Colors.BRIGHT_YELLOW} █████ {Colors.END}
|
||||
{Colors.BRIGHT_YELLOW} ███████ {Colors.END}
|
||||
{Colors.BRIGHT_YELLOW} ████ ████ {Colors.END}
|
||||
{Colors.BRIGHT_YELLOW} ████ ████ {Colors.END}
|
||||
{Colors.BRIGHT_YELLOW} ████ ████ {Colors.END}
|
||||
|
||||
{Colors.BRIGHT_RED}{Colors.BOLD} ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ {Colors.END}
|
||||
{Colors.BRIGHT_RED}{Colors.BOLD} ▓ ▓ ▓ ▓ ▓ ▓ ▓ ▓ ▓ ▓ ▓ {Colors.END}
|
||||
{Colors.BRIGHT_RED}{Colors.BOLD} ▓▓▓▓▓ ▓ ▓ ▓▓▓▓ ▓ ▓ ▓▓▓▓ ▓ ██ ▓ ██ ▓▓▓▓ {Colors.END}
|
||||
{Colors.BRIGHT_RED}{Colors.BOLD} ▓ ▓ ▓ ▓ ▓ ▓ ▓ ▓ ██ ▓ ██ ▓ {Colors.END}
|
||||
{Colors.BRIGHT_RED}{Colors.BOLD} ▓ ▓▓▓▓▓ ▓ ▓▓▓▓▓ ▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ {Colors.END}
|
||||
|
||||
{Colors.BRIGHT_CYAN}Forge Your Knowledge Into Power.{Colors.END}
|
||||
{Colors.DIM}Deep Read. Archive.{Colors.END}
|
||||
|
||||
{Colors.BOLD}[ v1.0 ]{Colors.END}
|
||||
"""
|
||||
{Colors.BRIGHT_YELLOW}
|
||||
______ ___ ______ _________________ ___________ _____ _____
|
||||
| ___ \/ _ \ | ___ \ ___| ___ \ ___| _ | ___ \ __ \| ___|
|
||||
| |_/ / /_\ \| |_/ / |__ | |_/ / |_ | | | | |_/ / | \/| |__
|
||||
| __/| _ || __/| __|| /| _| | | | | /| | __ | __|
|
||||
| | | | | || | | |___| |\ \| | \ \_/ / |\ \| |_/ \| |___
|
||||
\_| \_| |_/\_| \____/\_| \_\_| \___/\_| \_\|____/\____/
|
||||
{Colors.END}
|
||||
"""
|
||||
print(logo)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue