We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
<?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', ); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: