dotfiles/colorschemes/variables.css.py

10 lines
206 B
Python
Raw Normal View History

2020-09-06 18:28:24 +00:00
#!/usr/bin/env python3
import _theme as theme
2020-09-06 18:28:24 +00:00
print(":root {")
for var_name, color in theme.css_variables.items():
print(" --{}{}: {};".format(theme.css_variables_prefix, var_name, color))
2020-09-06 18:28:24 +00:00
print("}")