You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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</>');
The text was updated successfully, but these errors were encountered:
Description
Allow using the "bright" ANSI colours in symfony/console. This would be ANSI escape codes 90-97 and 100-107.
Example
The text was updated successfully, but these errors were encountered: