From 9823579a2da0d65f8e545e7daefd18a38676e859 Mon Sep 17 00:00:00 2001 From: Vilem Duha Date: Thu, 6 Jun 2019 14:27:18 +0200 Subject: BlenderKit: refactor reporting to User. this is still not very compatible with blender's way of doing things, but we need more lines of reporting for parallel tasks reporting. --- blenderkit/colors.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 blenderkit/colors.py (limited to 'blenderkit/colors.py') diff --git a/blenderkit/colors.py b/blenderkit/colors.py new file mode 100644 index 00000000..42545941 --- /dev/null +++ b/blenderkit/colors.py @@ -0,0 +1,22 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# +# ##### END GPL LICENSE BLOCK ##### + +# this module defines color palette for BlenderKit UI + +GREEN = (.9, 1, .9, .6) +RED = (1, .5, .5, .8) \ No newline at end of file -- cgit v1.2.3