1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
<?php
/**
* methodical_theme.php
* Name: Methodical
* Author: Ray Black III
* Date: November 19, 2001
* Comment: Methodical is a theme that's based on the dompie theme,
* but expands the blue across the entire page, and modifies
* some of the gray backgrounds.
*
* Copyright (c) 2000-2002 The SquirrelMail Project Team
* Licensed under the GNU GPL. For full terms see the file COPYING.
*
* $Id: methodical_theme.php,v 1.3 2001/12/28 20:16:19 fidian Exp $
*/
global $color;
$color[0] = '#808080'; // (middle grey) TitleBar
$color[1] = '#800000'; // (red)
$color[2] = '#CC0000'; // (light red) Warning/Error Messages
$color[3] = '#294763'; // (dark blue) Left Bar Background
$color[4] = '#294763'; // (white) Normal Background
$color[5] = '#999999'; // (light grey) Table Headers
$color[6] = '#FFFFFF'; // (white) Text on left bar
$color[7] = '#FFFFFF'; // (black) Links
$color[8] = '#FFFFFF'; // (black) Normal text
$color[9] = '#999999'; // (light grey) Darker version of #0
$color[10] = '#999999'; // (light grey) Darker version of #9
$color[11] = '#A7C5F3'; // (light blue) Special Folders color
$color[12] = '#9F9F9F'; //
$color[13] = '#DFDFDF'; // (lighter grey) Unselectable folders
?>
|