From 3f856a1159d9c82bc3dbce67a805a362cbde16c2 Mon Sep 17 00:00:00 2001
From: Nigel <munro98@gmail.com>
Date: Wed, 14 Jan 2015 14:51:09 +1300
Subject: [PATCH] Changed the Email report to look more consistent with the
 piwik UI.

---
 core/ReportRenderer.php      | 10 +++++-----
 core/ReportRenderer/Html.php |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/core/ReportRenderer.php b/core/ReportRenderer.php
index c82c2f1cf1..c34012cd27 100644
--- a/core/ReportRenderer.php
+++ b/core/ReportRenderer.php
@@ -23,11 +23,11 @@ use Piwik\BaseFactory;
  */
 abstract class ReportRenderer extends BaseFactory
 {
-    const DEFAULT_REPORT_FONT_FAMILY = 'dejavusans';
-    const REPORT_TEXT_COLOR = "68,68,68";
-    const REPORT_TITLE_TEXT_COLOR = "126,115,99";
-    const TABLE_HEADER_BG_COLOR = "228,226,215";
-    const TABLE_HEADER_TEXT_COLOR = "37,87,146";
+    const DEFAULT_REPORT_FONT_FAMILY = 'Verdana, sans-serif';
+    const REPORT_TEXT_COLOR = "13,13,13";
+    const REPORT_TITLE_TEXT_COLOR = "13,13,13";
+    const TABLE_HEADER_BG_COLOR = "255,255,255";
+    const TABLE_HEADER_TEXT_COLOR = "13,13,13";
     const TABLE_HEADER_TEXT_TRANSFORM = "uppercase";
     const TABLE_HEADER_TEXT_WEIGHT = "normal";
     const TABLE_CELL_BORDER_COLOR = "231,231,231";
diff --git a/core/ReportRenderer/Html.php b/core/ReportRenderer/Html.php
index c425b763c7..8949d59d78 100644
--- a/core/ReportRenderer/Html.php
+++ b/core/ReportRenderer/Html.php
@@ -22,7 +22,7 @@ class Html extends ReportRenderer
     const IMAGE_GRAPH_WIDTH = 700;
     const IMAGE_GRAPH_HEIGHT = 200;
 
-    const REPORT_TITLE_TEXT_SIZE = 11;
+    const REPORT_TITLE_TEXT_SIZE = 24;
     const REPORT_TABLE_HEADER_TEXT_SIZE = 11;
     const REPORT_TABLE_ROW_TEXT_SIZE = 11;
     const REPORT_BACK_TO_TOP_TEXT_SIZE = 9;
-- 
GitLab