Closed
Description
Description
Allow using the "bright" ANSI colours in symfony/console. This would be ANSI escape codes 90-97 and 100-107.
Example
// Using underscores for naming
$output->writeln('<fg=bright_red;bg=blue>foo</>');
$output->writeln('<fg=black;bg=bright_green>foo</>');
// Using dashes for naming
$output->writeln('<fg=bright-red;bg=blue>foo</>');
$output->writeln('<fg=black;bg=bright-green>foo</>');