X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=tabakrolletjie%2Fconstants.py;h=5529b60693245f2ce269588263dc422194c6b6e7;hb=3be7289209734c0fbdab80d55274e8b128770c40;hp=66150336c4e0120bcadf741ac5a8c154e132c77c;hpb=03a464fef04162e3928750a31e52cf954d5af7c8;p=tabakrolletjie.git diff --git a/tabakrolletjie/constants.py b/tabakrolletjie/constants.py index 6615033..5529b60 100644 --- a/tabakrolletjie/constants.py +++ b/tabakrolletjie/constants.py @@ -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), +}