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();