diff options
Diffstat (limited to 'printing_templates')
-rw-r--r-- | printing_templates/one_dive.html | 4 | ||||
-rw-r--r-- | printing_templates/two_dives.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/printing_templates/one_dive.html b/printing_templates/one_dive.html index 52b8097c9..ce58b3847 100644 --- a/printing_templates/one_dive.html +++ b/printing_templates/one_dive.html @@ -2,7 +2,7 @@ <head> <style> body { - background-color: white; + background-color: {{ template_options.color1 }}; padding: 0; margin: 0; font-size: {{ template_options.font_size }}vw; @@ -69,7 +69,7 @@ } .fieldTitle { - background-color: #CfC7C5; + background-color: {{ template_options.color2 }}; overflow: hidden; } diff --git a/printing_templates/two_dives.html b/printing_templates/two_dives.html index 62502272b..8a9df0094 100644 --- a/printing_templates/two_dives.html +++ b/printing_templates/two_dives.html @@ -2,7 +2,7 @@ <head> <style> body { - background-color: white; + background-color: {{ template_options.color1 }}; padding: 0px; margin: 0px; font-size: {{ template_options.font_size }}vw; @@ -63,7 +63,7 @@ } .fieldTitle { - background-color: #CfC7C5; + background-color: {{ template_options.color2 }}; overflow: hidden; padding:0; } |