Advertisement
Guest User

Gradientify

a guest
Aug 25th, 2011
3,096
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. import math
  2. gradient = ('F20904', 'F86800', 'FBD101', '5BFF00', '6677FF', '0000C7', '6611FF')
  3. def gradientmadness(text):
  4. leng = len(text)
  5. output = ''
  6. if leng < 7:
  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 / 7.0))
  16. for i in range(1, 8):
  17. output += text[(i-1)*size:i*size] + '</c>'
  18. return output
  19. gradientmadness.command="gradientify"
  20. #usage regex replace ^(.*)$ -> gradientify(\1)
  21.  
  22.  
  23.  
  24. save it as gradient.py put in the "quirks" folder in Pesterchum.
  25.  
  26.  
  27.  
  28. You have to put (.*) into the Regexp box, then gradientify(\1) into Replace with box.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement