-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolor.py
More file actions
23 lines (21 loc) · 1.11 KB
/
color.py
File metadata and controls
23 lines (21 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# **************************************************************************** #
# #
# ::: :::::::: #
# color.py :+: :+: :+: #
# +:+ +:+ +:+ #
# By: cpieri <cpieri@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/11/29 11:39:12 by cpieri #+# #+# #
# Updated: 2019/11/29 12:16:13 by cpieri ### ########.fr #
# #
# **************************************************************************** #
class Color:
def __init__(self):
self.none = "\033[0m"
self.red = "\033[31m"
self.green = "\033[32m"
self.yellow = "\033[33m"
self.blue = "\033[34m"
self.magenta = "\033[35m"
self.cyan = "\033[36m"
self.pink = "\033[38;5;206m"