Move colour definitions into constants
[tabakrolletjie.git] / tabakrolletjie / constants.py
index 66150336c4e0120bcadf741ac5a8c154e132c77c..5529b60693245f2ce269588263dc422194c6b6e7 100644 (file)
@@ -38,3 +38,14 @@ BUFFER = 1024
 DEFAULT_VOLUME = 1.0
 
 NO_SOUND = os.environ.get("TABAK_NO_SOUND", "").lower() in ("1", "y", "yes")
+
+# Color constants
+COLOURS = {
+    "red": (255, 0, 0),
+    "green": (0, 255, 0),
+    "blue": (0, 0, 255),
+    "cyan": (0, 255, 255),
+    "yellow": (255, 255, 0),
+    "magenta": (255, 0, 255),
+    "white": (255, 255, 255),
+}