Add some color to the logo
This commit is contained in:
parent
2d7856f27c
commit
b2727748ef
|
@ -14,13 +14,21 @@ from .__version__ import __version__
|
||||||
from .protocol import GeminiProtocol
|
from .protocol import GeminiProtocol
|
||||||
from .tls import GeminiCertificateOptions, generate_ad_hoc_certificate
|
from .tls import GeminiCertificateOptions, generate_ad_hoc_certificate
|
||||||
|
|
||||||
|
if sys.stderr.isatty():
|
||||||
|
CYAN = "\033[36m\033[1m"
|
||||||
|
RESET = "\033[0m"
|
||||||
|
else:
|
||||||
|
CYAN = ""
|
||||||
|
RESET = ""
|
||||||
|
|
||||||
|
|
||||||
ABOUT = fr"""
|
ABOUT = fr"""
|
||||||
You are now riding on...
|
{CYAN}You are now riding on...
|
||||||
_________ _____________
|
_________ _____________
|
||||||
______ /______ /___ __/_______________________
|
______ /______ /___ __/_______________________
|
||||||
___ _ /_ _ \ __/_ /_ _ __ \_ ___/ ___/ _ \
|
___ _ /_ _ \ __/_ /_ _ __ \_ ___/ ___/ _ \
|
||||||
/ /_/ / / __/ /_ _ __/ / /_/ / / / /__ / __/
|
/ /_/ / / __/ /_ _ __/ / /_/ / / / /__ / __/
|
||||||
\____/ \___/\__/ /_/ \____//_/ \___/ \___/
|
\____/ \___/\__/ /_/ \____//_/ \___/ \___/{RESET}
|
||||||
|
|
||||||
An Experimental Gemini Server, v{__version__}
|
An Experimental Gemini Server, v{__version__}
|
||||||
https://github.com/michael-lazar/jetforce
|
https://github.com/michael-lazar/jetforce
|
||||||
|
|
Loading…
Reference in New Issue