Files
catppuccin-gtk/build.py
2022-12-07 20:12:01 +05:30

8 lines
294 B
Python

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)