-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Description
<?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
Labels
No labels