feat: add python script for automation

This commit is contained in:
Pranav Santhosh
2022-12-07 20:12:01 +05:30
committed by GitHub
parent ddf996b0a4
commit b0e49b42a6
17720 changed files with 554 additions and 299897 deletions

8
build.py Normal file
View File

@@ -0,0 +1,8 @@
from scripts.create_theme import create_theme
from scripts.ctp_colors import ctp_colors
for theme, value in ctp_colors.items():
for accent, _ in value.get_accent().items():
print("\n\n\nCreating theme for", theme, "with accent", accent)
create_theme(theme, accent)