The League of Extraordinary Packages

Our Packages:

Presented by The League of Extraordinary Packages

Getting Started

Styling

Arguments

Terminal Objects

Colors

There are many pre-defined colors at your disposal:

$climate->red('Whoa now this text is red.');
$climate->blue('Blue? Wow!');
$climate->lightGreen('It is not easy being (light) green.');

If you prefer, you can also simply chain the color method and continue using out:

$climate->red()->out('Whoa now this text is red.');
$climate->blue()->out('Blue? Wow!');
$climate->lightGreen()->out('It is not easy being (light) green.');

Backgrounds

To to apply a color as a background, simply prepend the color method with background:

$climate->backgroundRed('Whoa now this text has a red background.');
$climate->backgroundBlue()->out('Blue background? Wow!');
$climate->backgroundLightGreen()->out('It is not easy being (light) green (background).');