From 4c4e7f086ea29e993cd0d4e9900f51aa2efc2e74 Mon Sep 17 00:00:00 2001 From: Aydin Hassan Date: Thu, 28 Jan 2016 22:16:44 +0000 Subject: [PATCH] Moar pink --- src/ExerciseRenderer.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ExerciseRenderer.php b/src/ExerciseRenderer.php index 7085df0d..45967f7c 100644 --- a/src/ExerciseRenderer.php +++ b/src/ExerciseRenderer.php @@ -93,8 +93,9 @@ public function __invoke(CliMenu $menu) $exerciseIndex = array_search($exercise, $exercises) + 1; $output = "\n"; - $output .= $this->color->__invoke(' LEARN YOU THE PHP FOR MUCH WIN! ')->green()->bold() . "\n"; - $output .= $this->color->__invoke('*********************************')->green()->bold() . "\n"; + $output .= $this->color->__invoke(' LEARN YOU THE PHP FOR MUCH WIN! ')->magenta()->bold() . "\n"; + $output .= $this->color->__invoke('*********************************')->magenta()->bold() . "\n"; + $output .= "\n"; $output .= $this->color->__invoke(" " . $exercise->getName())->yellow()->bold() . "\n"; $output .= $this->color->__invoke(sprintf(" Exercise %d of %d\n\n", $exerciseIndex, $numExercises))->yellow();