From 17874ea306fc74dfe388db9f152bc27de7955f68 Mon Sep 17 00:00:00 2001 From: Tiago Brito Date: Wed, 19 Feb 2014 22:48:27 +0000 Subject: [PATCH] Change color levels Changed the Emergency color because the background was the same color as the foreground. And also changed the Alert and Critical colors to increase the contrast between these levels. --- src/Monolog/Formatter/HtmlFormatter.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Monolog/Formatter/HtmlFormatter.php b/src/Monolog/Formatter/HtmlFormatter.php index d853547b..f07c8715 100644 --- a/src/Monolog/Formatter/HtmlFormatter.php +++ b/src/Monolog/Formatter/HtmlFormatter.php @@ -30,9 +30,9 @@ class HtmlFormatter extends NormalizerFormatter Logger::NOTICE => '#3a87ad', Logger::WARNING => '#c09853', Logger::ERROR => '#f0ad4e', - Logger::CRITICAL => '#b94a48', - Logger::ALERT => '#d9534f', - Logger::EMERGENCY => '#ffffff', + Logger::CRITICAL => '#FF7708', + Logger::ALERT => '#C12A19', + Logger::EMERGENCY => '#000000', ); /**