From 5e1dcec78f42c4b6a1252bb2fdf6eafb1c32dd59 Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Thu, 15 May 2014 21:22:42 +0200 Subject: [PATCH] The official palette. Please use. --- naja/constants.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/naja/constants.py b/naja/constants.py index 92162ce..96824f4 100644 --- a/naja/constants.py +++ b/naja/constants.py @@ -70,3 +70,23 @@ KEYS = AttrDict({ 'QUIT': (pgl.K_ESCAPE, pgl.K_q), 'SWITCH': (pgl.K_TAB,), }) + +# PALETTE + +PALETTE = AttrDict({ + 'BLACK': (0, 0, 0), + 'DARK_RED': (108, 41, 64), + 'DARK_VIOLET': (64, 53, 120), + 'MAGENTA': (217, 60, 240), + 'DARK_GREEN': (19, 87, 64), + 'GREY': (128, 128, 128), + 'BLUE': (38, 151, 240), + 'LIGHT_VIOLET': (191, 180, 248), + 'DARK_OLIVE': (64, 75, 7), + 'ORANGE': (217, 104, 15), + 'PINK': (236, 168, 191), + 'GREEN': (38, 195, 15), + 'LIGHT_OLIVE': (191, 202, 135), + 'LIGHT_TURQUOISE': (147, 214, 191), + 'WHITE': (255, 255, 255), +}) -- 2.34.1