chore: Update comment in rebuild-themes.py to clarify that it is an auto generated color theme

This commit is contained in:
Mauro Balades 2024-08-21 16:54:00 +02:00
parent b674c261ba
commit be929208df

View file

@ -21,7 +21,7 @@ def write_colors(colors_file, output_file):
with open(colors_file, 'r') as f:
colors = json.load(f)
with open(output_file, 'w') as f:
f.write('/* This is a color theme. */\n')
f.write('/* This is an auto generated color theme. */\n')
f.write(':root {\n')
for color in colors:
if color == "isDarkMode":