Update rebuild-themes.py

This commit is contained in:
mauro 🤙 2024-08-21 23:05:24 +02:00 committed by GitHub
parent 32d50c97b6
commit 29a8ee3a38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,7 +26,7 @@ def write_colors(colors_file, output_file):
for color in colors:
if color == "isDarkMode":
continue
f.write(f' {get_color_css_variable(color)}: {colors[color]};\n')
f.write(f' {get_color_css_variable(color)}: {colors[color]} !important;\n')
if colors["isDarkMode"]:
f.write(' color-scheme: dark !important;\n')
else: