You are here

private static property OutputFormatterStyle::$availableForegroundColors in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Formatter/OutputFormatterStyle.php \Symfony\Component\Console\Formatter\OutputFormatterStyle::availableForegroundColors

File

vendor/symfony/console/Formatter/OutputFormatterStyle.php, line 21

Class

OutputFormatterStyle
Formatter style class for defining styles.

Namespace

Symfony\Component\Console\Formatter

Code

private static $availableForegroundColors = array(
  'black' => array(
    'set' => 30,
    'unset' => 39,
  ),
  'red' => array(
    'set' => 31,
    'unset' => 39,
  ),
  'green' => array(
    'set' => 32,
    'unset' => 39,
  ),
  'yellow' => array(
    'set' => 33,
    'unset' => 39,
  ),
  'blue' => array(
    'set' => 34,
    'unset' => 39,
  ),
  'magenta' => array(
    'set' => 35,
    'unset' => 39,
  ),
  'cyan' => array(
    'set' => 36,
    'unset' => 39,
  ),
  'white' => array(
    'set' => 37,
    'unset' => 39,
  ),
  'default' => array(
    'set' => 39,
    'unset' => 39,
  ),
);