12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * ice_theme.php
- * Name: Ice Theme
- * Author: Luke Ehresman
- * Date: January 7 2000
- * Comment:
- *
- * Copyright (c) 2000-2002 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * $Id$
- */
- global $color;
- $color[0] = '#C0DAFF'; // TitleBar
- $color[1] = '#800000'; // Error Message
- $color[2] = '#CC0000'; // Warning/Error Messages
- $color[3] = '#B0CAFF'; // Left Bar Background
- $color[4] = '#FFFFFF'; // Normal Background
- $color[5] = '#D0EAFF'; // Table Headers
- $color[6] = '#000000'; // Text on left bar
- $color[7] = '#8888FF'; // Links
- $color[8] = '#000000'; // Normal text
- $color[9] = '#D0EAFF'; // Darker version of #0
- $color[10] = '#F0FAFF'; // Darker version of #9
- $color[11] = '#770000'; // Special Folders color
- $color[15] = '#006600'; // Unselectable folders
- ?>
|