-
Notifications
You must be signed in to change notification settings - Fork 0
Fancy titles
Vincent Fabre edited this page Dec 22, 2022
·
2 revisions
from flamewok import big_text
from flamewok import color as c
print(big_text(
"Example", on="@", off=".", spacing=2, underline=True, color=c.success))
# Output (the color can only be seen in a real terminal):
@@@@@...............................@@...........
@....................................@...........
@......@...@...@@@...@@.@...@@@@.....@.....@@@...
@@@@....@.@.......@..@.@.@..@...@....@....@...@..
@........@.....@@@@..@.@.@..@...@....@....@@@@@..
@.......@.@...@...@..@.@.@..@@@@.....@....@......
@@@@@..@...@...@@@@..@.@.@..@.......@@@....@@@...
.................................................
.................................................
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
# or with default settings:
print(big_text("Example"))
# Output:
##### ##
# #
# # # ### ## # #### # ###
#### # # # # # # # # # # #
# # #### # # # # # # #####
# # # # # # # # #### # #
##### # # #### # # # # ### ###