From ed6fe5556a51d0ce15a5cbd63845eac80aa25482 Mon Sep 17 00:00:00 2001 From: Lewis Goddard Date: Thu, 14 Mar 2024 12:20:04 +0000 Subject: [PATCH] Update generator.py --- utils/generator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/generator.py b/utils/generator.py index 83229a7..ff84565 100644 --- a/utils/generator.py +++ b/utils/generator.py @@ -58,6 +58,7 @@ def save_css(path, slug, suffix, css): save_css(path, slug, '.min.css', css_min) # Step 3. Combine and minify into main files +slug = 'colors' css_all_title = '/*! Colors.css ' + version + ' | All Palettes | MIT License | https://github.com/eustasy/colors.css */\n' css_min = css_all_title + re.sub(r'[\s\n]+', '', css_all).lower() css = css_all_title + css_all