Changes background color of HTML exported journals to #1B2C3E

This commit is contained in:
arcanine 2017-11-10 12:18:56 -05:00
parent f1479d7ce8
commit 3855a90319

View file

@ -75,7 +75,7 @@ def to_html(journal):
html += "\t\t\th2{margin:0}\n" html += "\t\t\th2{margin:0}\n"
html += "\t\t\tbody{\n" html += "\t\t\tbody{\n"
html += "\t\t\t\tfont-family: sans-serif;\n" html += "\t\t\t\tfont-family: sans-serif;\n"
html += "\t\t\t\tbackground: #252a32;\n" html += "\t\t\t\tbackground: #1B2C3E;\n"
html += "\t\t\t\tmargin-top:5%;\n" html += "\t\t\t\tmargin-top:5%;\n"
html += "\t\t\t\tmargin-bottom:5%;\n" html += "\t\t\t\tmargin-bottom:5%;\n"
html += "\t\t\t\tmargin-left:5%;\n" html += "\t\t\t\tmargin-left:5%;\n"