Aerendir/console-styles-bundle

View on GitHub
src/Console/ConsoleColors.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/*
 * This file is part of the Serendipity HQ Console Styles Component.
 *
 * Copyright (c) Adamo Aerendir Crespi <aerendir@serendipityhq.com>.
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace SerendipityHQ\Bundle\ConsoleStyles\Console;

/**
 * Constants that define colors available in CLI.
 */
final class ConsoleColors
{
    /** @var string */
    public const BLACK = 'black';

    /** @var string */
    public const BLUE = 'blue';

    /** @var string */
    public const CYAN = 'cyan';

    /** @var string */
    public const GREEN = 'green';

    /** @var string */
    public const YELLOW = 'yellow';

    /** @var string */
    public const MAGENTA = 'magenta';

    /** @var string */
    public const RED = 'red';

    /** @var string */
    public const WHITE = 'white';
}