mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
9 lines
207 B
Python
9 lines
207 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import _theme as theme
|
||
|
|
||
|
print(":root {")
|
||
|
for var_name, color in theme.css_variables.items():
|
||
|
print(" --{}{}: {};".format(theme.css_variables_prefix, var_name, color))
|
||
|
print("}")
|