Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/taconstants.py
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2013-05-22 03:43:10 (GMT)
committer Walter Bender <walter@sugarlabs.org>2013-05-22 03:43:10 (GMT)
commit47367cb190e38405d68f5ad94fe109cdddecc136 (patch)
tree661c275d0bfffe9800a815ba57f2b01c4223d2f8 /TurtleArt/taconstants.py
parent30a18ecaac3a8ef7d017642564db7a601c4e75c4 (diff)
clean up logo export code (use \n instead of \r)
Diffstat (limited to 'TurtleArt/taconstants.py')
-rw-r--r--TurtleArt/taconstants.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/TurtleArt/taconstants.py b/TurtleArt/taconstants.py
index 1fb979a..4961b24 100644
--- a/TurtleArt/taconstants.py
+++ b/TurtleArt/taconstants.py
@@ -92,6 +92,10 @@ COLORDICT = {'_black': [None, 0, 0], '_white': [None, 100, 0],
'_cyan': [50, 50, 100], '_blue': [70, 50, 100],
'_purple': [90, 50, 100]}
+LOGOCOLORDICT = {'_black': 0, '_white': 1, '_red': 2, '_orange': 3,
+ '_yellow': 3, '_green': 4, '_cyan': 5, '_blue': 6,
+ '_purple': 7}
+
# Blocks that are expandable
EXPANDABLE_STYLE = ['boolean-style', 'compare-porch-style', 'compare-style',