Advertisement
ZeekoSec

lols

Dec 22nd, 2015
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.07 KB | None | 0 0
  1. class colors:
  2.     Red = '\033[91m'
  3.     Green = '\033[92m'
  4.     Blue = '\033[94m'
  5.     Cyan = '\033[96m'
  6.     Yellow = '\033[93m'
  7.     Magenta = '\033[95m'
  8.  
  9. print colors.Red + "    ░░░░░░░░░░░░░▄▄▄▄▄▄▄░░░░░░░░░"
  10. print colors.Green + "  ░░░░░░░░░▄▀▀▀░░░░░░░▀▄░░░░░░░"
  11. print colors.Blue + "   ░░░░░░░▄▀░░░░░░░░░░░░▀▄░░░░░░"
  12. print colors.Cyan + "   ░░░░░░▄▀░░░░░░░░░░▄▀▀▄▀▄░░░░░"
  13. print colors.Yellow + " ░░░░▄▀░░░░░░░░░░▄▀░░██▄▀▄░░░░"
  14. print colors.Magenta + "░░░▄▀░░▄▀▀▀▄░░░░█░░░▀▀░█▀▄░░░"
  15. print colors.Red + "    ░░░█░░█▄░░░░█░░░▀▄░░░░░▐░█░░░"
  16. print colors.Green + "  ░░▐▌░░█▀░░░▄▀░░░░░▀▄▄▄▄▀░░█░░"
  17. print colors.Blue + "   ░░▐▌░░█░░░▄▀░░░░░░░░░░░░░░█░░"
  18. print colors.Cyan + "   ░░▐▌░░░▀▀▀░░░░░░░░░░░░░░░░▐▌░"
  19. print colors.Yellow + " ░░▐▌░░░░░░░░░░░░░░░▄░░░░░░▐▌░"
  20. print colors.Magenta + "░░▐▌░░░░░░░░░▄░░░░░█░░░░░░▐▌░"
  21. print colors.Red + "    ░░░█░░░░░░░░░▀█▄░░▄█░░░░░░▐▌░"
  22. print colors.Green + "  ░░░▐▌░░░░░░░░░░▀▀▀▀░░░░░░░▐▌░"
  23. print colors.Blue + "   ░░░░█░░░░░░░░░░░░░░░░░░░░░█░░"
  24. print colors.Cyan + "   ░░░░▐▌▀▄░░░░░░░░░░░░░░░░░▐▌░░"
  25. print colors.Yellow + " ░░░░░█░░▀░░░░░░░░░░░░░░░░▀░░░"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement