-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathobjects.py
20 lines (18 loc) · 855 Bytes
/
objects.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from graphics import *
# Purple Crimson Red
zelleColors = [color_rgb(0x80, 0x02, 0x80), color_rgb(0x80, 0x02, 0x00), color_rgb(0xFD, 0x02, 0x02),
# Orange Yellow Green
color_rgb(0xFD, 0x80, 0x02), color_rgb(0xFD, 0xFD, 0x02), color_rgb(0x80, 0xFD, 0x02),
# Teal Blue Navy
color_rgb(0x40, 0xC0, 0x80), color_rgb(0x02, 0x80, 0xFD), color_rgb(0x02, 0x40, 0x82)]
arrColors = [
[128, 2, 128], # Purple
[128, 2, 2], # Crimson
[254, 2, 2], # Red
[254, 128, 2], # Orange
[254, 254, 2], # Yellow
[128, 254, 2], # Green
[64, 128, 2], # Emerald
[2, 64, 254], # Blue
[2, 64, 80] # Navy
]