ACC SHELL
<?php
/**
* high_contrast_theme.php
* Name: High Contrast
* Date: July 13, 2000
*
* @author Casey A. Peel
* @copyright 2000-2010 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: high_contrast_theme.php 13893 2010-01-25 02:47:41Z pdontthink $
* @package squirrelmail
* @subpackage themes
*/
global $color;
$color[0] = '#818181'; // (light gray) TitleBar
$color[1] = '#ff0000'; // (red)
$color[2] = '#cc0000'; // (light red) Warning/Error Messages
$color[3] = '#008080'; // (green-blue) Left Bar Background
$color[4] = '#ffffff'; // (white) Normal Background
$color[5] = '#ffff00'; // (light yellow) Table Headers
$color[6] = '#000000'; // (black) Text on left bar
$color[7] = '#0000ff'; // (blue) Links
$color[8] = '#000000'; // (black) Normal text
$color[9] = '#c0c0c0'; // (mid-gray) Darker version of #0
$color[10] = '#808080'; // (dark gray) Darker version of #9
$color[11] = '#ffffff'; // (white) Special Folders color
$color[15] = '#d0d070'; // (gold) Unselectable folders
ACC SHELL 2018