diff cagou/core/constants.py @ 176:2cfef8fbfd4e

core: moved main colors to constants
author Goffi <goffi@goffi.org>
date Tue, 01 May 2018 16:54:42 +0200
parents cd99f70ea592
children d11df7793399
line wrap: on
line diff
--- a/cagou/core/constants.py	Mon Apr 30 07:57:37 2018 +0200
+++ b/cagou/core/constants.py	Tue May 01 16:54:42 2018 +0200
@@ -33,3 +33,10 @@
 
     TRANSFER_UPLOAD = u"upload"
     TRANSFER_SEND = u"send"
+
+    COLOR_PRIM = [0.98,0.98,0.98,1]
+    COLOR_PRIM_LIGHT = [1, 1, 1, 1]
+    COLOR_PRIM_DARK = [0.78,0.78,0.78,1]
+    COLOR_SEC = [0.27,0.54,1.0,1]
+    COLOR_SEC_LIGHT = [0.51,0.73,1.0,1]
+    COLOR_SEC_DARK = [0.0,0.37,0.8,1]