Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New 80's Hacker Theme #23

Open
fctr opened this issue Feb 20, 2020 · 0 comments
Open

New 80's Hacker Theme #23

fctr opened this issue Feb 20, 2020 · 0 comments

Comments

@fctr
Copy link

fctr commented Feb 20, 2020

<?php

/*
 * This file is part of ansi-to-html.
 *
 * (c) 2013 Fabien Potencier
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace SensioLabs\AnsiConverter\Theme;

/**
 * Hacker theme.
 *
 * @see http://ethanschoonover.com/solarized
 */
class HackerTheme extends Theme
{
    public function asArray()
    {
        return array(
            // normal
            'black' => '#000000',
            'red' => '#800000',
            'green' => '#008000',
            'yellow' => '#808000',
            'blue' => '#000080',
            'magenta' => '#800080',
            'cyan' => '#008080',
            'white' => '#808080',

            // bright
            'brblack' => '#606060',
            'brred' => '#FF0000',
            'brgreen' => '#00FF00',
            'bryellow' => '#FFFF00',
            'brblue' => '#0000FF',
            'brmagenta' => '#FF00FF',
            'brcyan' => '#00FFFF',
            'brwhite' => '#FFFFFF',
        );
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant