shell.py 377 B

12345678910111213141516
  1. # http://misc.flogisoft.com/bash/tip_colors_and_formatting
  2. class Formatting:
  3. bold = '\033[1m'
  4. dim = '\033[2m'
  5. reset_bold = '\033[21m'
  6. reset_dim = '\033[22m'
  7. reset = ''.join([reset_bold, reset_dim])
  8. class TextColor:
  9. default = '\033[39m'
  10. red = '\033[31m'
  11. green = '\033[32m'
  12. yellow = '\033[33m'
  13. blue = '\033[34m'
  14. magenta = '\033[35m'