mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-04 08:46:17 +01:00
12 lines
211 B
Python
Executable file
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"
|