Codebase list poshc2 / f5144e5a-ce1a-4d37-ab4e-5fec1437c55d/upstream poshc2 / Colours.py
f5144e5a-ce1a-4d37-ab4e-5fec1437c55d/upstream

Tree @f5144e5a-ce1a-4d37-ab4e-5fec1437c55d/upstream (Download .tar.gz)

Colours.py @f5144e5a-ce1a-4d37-ab4e-5fec1437c55d/upstreamraw · 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'