12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * blue_grey_theme.php
- * Name: Blue-grey
- * Author: M.J. Prinsen
- * Date: July 20, 2001
- *
- * Copyright (c) 2001-2002 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * $Id$
- */
- global $color;
- $color[0] = '#6188A9'; // (middle blue) TitleBar
- $color[1] = '#800000'; // (red)
- $color[2] = '#CC0000'; // (light red) Warning/Error Messages
- $color[3] = '#294763'; // (dark blue) Left Bar Background
- $color[4] = '#929292'; // (dark grey) Normal Background or C0C0C0
- $color[5] = '#597D9D'; // (middle blue) Table Headers
- $color[6] = '#FFFFFF'; // (white) Text on left bar
- $color[7] = '#FFFFFF'; // (white) Links
- $color[8] = '#FFFFFF'; // (white) Normal text
- $color[9] = '#587B99'; // (middle gray) Darker version of #0
- $color[10] = '#496E8B'; // (dark gray) Darker version of #9
- $color[11] = '#A7C5F3'; // (light blue) Special Folders color
- $color[12] = '#7092B4';
- $color[15] = '#D0D0D0'; // (light gray) Unselectable folders
- ?>
|