Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVilem Duha <vilem.duha@gmail.com>2021-11-22 12:34:42 +0300
committerVilem Duha <vilem.duha@gmail.com>2021-11-22 12:34:42 +0300
commit44bb7785ca78177c56de2203de9e03ba7a2513f6 (patch)
tree1710f7b74a52c7dd5534974334ce43627b6a3771 /blenderkit/colors.py
parent93d922c0d63d7bbdaf19faa6490ce8c6ccfe3f25 (diff)
Moving BlenderKit to new repository on GitHub
BlenderKit addon will be here since now: https://github.com/BlenderKit/blenderkit And all release notes , docs and information will be on BlenderKit website: www.blenderkit.com The move happens since Blender Foundation ended the commercial addon offering for all commercial addons. This means a bit less comfort for our users, but also many new possibilities!
Diffstat (limited to 'blenderkit/colors.py')
-rw-r--r--blenderkit/colors.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/blenderkit/colors.py b/blenderkit/colors.py
deleted file mode 100644
index fe2fb1ac..00000000
--- a/blenderkit/colors.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# ##### 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
-
-WHITE = (1, 1, 1, .9)
-
-TEXT = (.9, .9, .9, .6)
-GREEN = (.9, 1, .9, .6)
-RED = (1, .5, .5, .8)