diff --git a/Unit_testing/Reporter/HTMLReporter.php b/Unit_testing/Reporter/HTMLReporter.php
index 173cf67..faa8da2 100644
--- a/Unit_testing/Reporter/HTMLReporter.php
+++ b/Unit_testing/Reporter/HTMLReporter.php
@@ -17,16 +17,16 @@
$statusText .= '" style="padding-left: 2em;"># ';
break;
case Reporter::STATUS_INCOMPLETE:
- $statusText .= ' uniyellbg result">% ';
+ $statusText .= ' yellow-ou result">% ';
break;
case Reporter::STATUS_FAILURE:
- $statusText .= ' uniredbg result"">✘ ';
+ $statusText .= ' red-ou result"">✘ ';
break;
case Reporter::STATUS_ERROR:
- $statusText .= ' uniredbg result">☠ ';
+ $statusText .= ' red-ou result">☠ ';
break;
case Reporter::STATUS_WARNING:
- $statusText .= ' uniyellbg result">⚠ ';
+ $statusText .= ' yellow-ou result">⚠ ';
break;
case Reporter::STATUS_NOTE:
$statusText .= ' grey-light result">';
@@ -36,7 +36,7 @@
$statusText .= ' style="font-weight: bold;">';
break;
default:
- $statusText .= ' uniyellbg result">? ';
+ $statusText .= ' yellow-ou result">? ';
break;
}
if ( $this->getVerbosity() > 1 ) $statusText .= "" . ucfirst( strtolower( $status ) ) . ': ';