You are here

private static property OutputFormatterStyle::$availableBackgroundColors 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::availableBackgroundColors

File

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

Class

OutputFormatterStyle
Formatter style class for defining styles.

Namespace

Symfony\Component\Console\Formatter

Code

private static $availableBackgroundColors = array(
  'black' => array(
    'set' => 40,
    'unset' => 49,
  ),
  'red' => array(
    'set' => 41,
    'unset' => 49,
  ),
  'green' => array(
    'set' => 42,
    'unset' => 49,
  ),
  'yellow' => array(
    'set' => 43,
    'unset' => 49,
  ),
  'blue' => array(
    'set' => 44,
    'unset' => 49,
  ),
  'magenta' => array(
    'set' => 45,
    'unset' => 49,
  ),
  'cyan' => array(
    'set' => 46,
    'unset' => 49,
  ),
  'white' => array(
    'set' => 47,
    'unset' => 49,
  ),
  'default' => array(
    'set' => 49,
    'unset' => 49,
  ),
);