-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathconfig.py
More file actions
16 lines (16 loc) · 748 Bytes
/
config.py
File metadata and controls
16 lines (16 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Specify which file (without .py extension) in the arts folder should be used
artFile = "example"
# Speed of art
speed = 0.005
# Print code in the beginning
codePrint = False
codingSpeed = 0.01
codeColor='red'
# Audio
playAudio = True
audio = 'HappyBirthday.mp3'
# Random color is choosen from the list
color = ['red','green','yellow','blue','magenta','cyan','white']
# Change the keys of the dict to change the color codes
# If you change the color codes for blink, remove blink(none) and random, you have to change it in pprint() function of PyBirthdayWish.py too.
colorCodes = {'①':'grey','②':'red','③':'green','④':'yellow','⑤':'blue','⑥':'magenta','⑦':'cyan','⑧':'white','⑨':'blink','⑩':'none','®':'random'}