graffiti wall testing

added graffiti wall to beta. cleaned up beta checking, including new
beta banner. added rainbow text to util.
This commit is contained in:
endorphant
2016-05-27 14:08:45 -04:00
parent 53466c8a5f
commit e1bd23d257
2 changed files with 81 additions and 24 deletions

View File

@@ -84,6 +84,19 @@ def hilight(text):
return colorama.Style.BRIGHT+text+colorama.Style.NORMAL
def rainbow(txt):
'''
Takes a string and makes every letter a different color.
'''
rainbow = ""
for letter in txt:
rainbow += attach_rainbow() + letter
rainbow += attach_reset()
return rainbow
def pretty_time(time):
'''
human-friendly time formatter