Skip to content

New 80's Hacker Theme #23

@fctr

Description

@fctr
<?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',
        );
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions