-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColors.py
29 lines (25 loc) · 1.02 KB
/
Colors.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""
Copyright 2020, Köhler Noah & Statz Andre, [email protected] [email protected], All rights reserved.
"""
# :var colors:
# colors is a dictionary. The Key is a string, who describes a color.
# The value is a tuple, with three integers the value should be between 0 and 255.
# Each of the individual values describes the proportion of the color red, green or blue.
# That means with a value of 255 the color will have a maximum share.
# R G B
colors = {
'WHITE': (255, 255, 255),
'YELLOW': (255, 255, 0),
'BLACK': (0, 0, 0),
'RED': (255, 0, 0),
'BLUE': (0, 0, 255),
'GREEN': (0, 255, 0),
'GRAY': (127, 127, 127),
'ORANGE': (255, 128, 0),
'PURPLE': (255, 0, 255),
'CYAN': (0, 255, 255),
'PINK': (255, 175, 255),
'LIGHTORANGE': (255, 128, 0),
'POINTS': (255, 204, 153),
'BROWN': (153, 76, 0)
}