mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-07 08:55:31 +02:00
Merge branch 'main' of https://github.com/zen-browser/theme-store
This commit is contained in:
commit
4b2ab07898
24 changed files with 121 additions and 21 deletions
|
@ -30,9 +30,11 @@ 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:
|
||||
f.write(' color-scheme: light !important;\n')
|
||||
f.write('}\n')
|
||||
|
||||
def main():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue