Solved OpenProject build bug

This commit is contained in:
2025-04-16 00:56:29 +02:00
parent 4b824ecd6c
commit 567622f523
12 changed files with 659 additions and 705 deletions

View File

@@ -0,0 +1,9 @@
from colorscheme_generator import generate_full_palette
class LookupModule(object):
def run(self, terms, variables=None, **kwargs):
base_color = terms[0]
count = kwargs.get('count', 100)
shades = kwargs.get('shades', True)
return [generate_full_palette(base_color, count=count, shades=shades)]