From 3855a90319ceabb6a126fc1d57b0f6ca6d34333c Mon Sep 17 00:00:00 2001 From: arcanine Date: Fri, 10 Nov 2017 12:18:56 -0500 Subject: [PATCH] Changes background color of HTML exported journals to #1B2C3E --- jrnl/exporters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/exporters.py b/jrnl/exporters.py index 1c907644..a9ff74b3 100644 --- a/jrnl/exporters.py +++ b/jrnl/exporters.py @@ -75,7 +75,7 @@ def to_html(journal): html += "\t\t\th2{margin:0}\n" html += "\t\t\tbody{\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-bottom:5%;\n" html += "\t\t\t\tmargin-left:5%;\n"