From 83c8d8bbd44505d7b0ddeae63b26fee1ffa3c688 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Sun, 20 Dec 2015 16:43:52 -0800 Subject: [PATCH] Added GRAY constant --- constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/constants.py b/constants.py index c8fce368..295a842f 100644 --- a/constants.py +++ b/constants.py @@ -132,6 +132,7 @@ COLOR_MAP = { "PURPLE_A" : "#CAA3E8", "WHITE" : "#FFFFFF", "BLACK" : "#000000", + "GRAY" : "#888888", } PALETTE = COLOR_MAP.values() globals().update(COLOR_MAP)