updated css retrieval method

This commit is contained in:
Paul Houser 2020-08-24 17:29:00 -07:00
parent b1d7778750
commit 28da1cd78e

View File

@ -117,7 +117,9 @@ def gen_style(file_dict):
else:
theme = '../themes/' + theme + '.css'
cache_style.write("@import url('" + theme + "');\n")
copyfile(theme, home + '/.cache/StartTree/styles/colors.css')
cache_style.write("@import url('./colors.css');\n")
lines = skeleton_style.readlines()
for line in lines: