Codebase list poshc2 / 39f6cef poshc2 / Colours.py
39f6cef

Tree @39f6cef (Download .tar.gz)

Colours.py @39f6cefraw · history · blame

1
2
3
4
5
6
7
class Colours:
    BLUE = '\033[94m'
    GREEN = '\033[92m'
    RED = '\033[91m'
    END = '\033[0m'
    YELLOW = '\033[93m'
    PURPLE = '\033[1;35m'