Advertisement
CapriCornBot

gradient math

Oct 9th, 2016
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. import math
  2. gradient = ('F500F5', 'EB00EB', 'E100E1', 'D700D7', 'D700D7', 'CD00CD', 'C300C3', 'B900B9', 'AF00AF', '000000')
  3. def gradientmadness(text):
  4. leng = len(text)
  5. output = ''
  6. if leng < 10:
  7. for i in range(0, leng):
  8. output += '<c=#%s>' % gradient[i]
  9. for i in range(0, leng):
  10. output += text[i] + '</c>'
  11. else:
  12. output += '<c=#'
  13. output += '><c=#'.join(gradient)
  14. output += '>'
  15. size = int(math.ceil(leng / 10.0))
  16. for i in range(1, 10+1):
  17. output += text[(i-1)*size:i*size] + '</c>'
  18. return output
  19. gradientmadness.command="ccc"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement