slpkg/slpkg/colors.py
2014-07-19 08:11:03 +03:00

12 lines
211 B
Python
Executable file

#!/usr/bin/python
# -*- coding: utf-8 -*-
class colors:
'''
Print out colors class
'''
RED = "\x1b[31m"
GREEN = "\x1b[32m"
YELLOW = "\x1b[33m"
CYAN = "\x1b[36m"
ENDC = "\x1b[0m"