diff --git a/core/ReportRenderer.php b/core/ReportRenderer.php index c82c2f1cf1c94e958d01c8f6e16af2f79c79672b..c34012cd27d21de2945ee78be1801f8dad00b283 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 c425b763c745b04ad9e3609f99c2a078ded40db7..8949d59d78e0cc769c7d9e65ca25d027555ed910 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;