Added error handling if template.php or requested template is not found.
[squirrelmail.git] / themes / default_theme.php
CommitLineData
8eaebe74 1<?php
4b4abf93 2
c4309fbd 3/**
c4309fbd 4 * January 2, 2000
5 * Theme Name: 'Default Theme'
6 * This is the default theme that comes standard with SquirrelMail.
7 * Most of the colors were taken from mail.yahoo.com's theme on their
8 * site.
9 *
10 * To create a new theme, just copy this file, and edit the colors.
11 * Be sure to rename the file and keep the original, just in case.
12 *
13 * NOTE:
14 * You might want to submit the theme you create to our Patches tracker
15 * on http://sourceforge.net/projects/squirrelmail
16 * for inclusion in further releases of SquirrelMail.
4b4abf93 17 *
18 * @author Luke Ehresman
47ccfad4 19 * @copyright &copy; 2000-2006 The SquirrelMail Project Team
4b4abf93 20 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
21 * @version $Id$
c4309fbd 22 * @package squirrelmail
23 * @subpackage themes
24 **/
8eaebe74 25
f740c049 26 global $color;
eb548244 27 $color[0] = '#dcdcdc'; // (light gray) TitleBar
ecf5c1bd 28 $color[1] = '#800000'; // (red)
eb548244 29 $color[2] = '#cc0000'; // (light red) Warning/Error Messages
30 $color[3] = '#a0b8c8'; // (green-blue) Left Bar Background
31 $color[4] = '#ffffff'; // (white) Normal Background
32 $color[5] = '#ffffcc'; // (light yellow) Table Headers
ecf5c1bd 33 $color[6] = '#000000'; // (black) Text on left bar
eb548244 34 $color[7] = '#0000cc'; // (blue) Links
ecf5c1bd 35 $color[8] = '#000000'; // (black) Normal text
eb548244 36 $color[9] = '#ababab'; // (mid-gray) Darker version of #0
ecf5c1bd 37 $color[10] = '#666666'; // (dark gray) Darker version of #9
38 $color[11] = '#770000'; // (dark red) Special Folders color
eb548244 39 $color[12] = '#ededed'; // (light gray) Alternate color for message list
b5df2059 40 $color[13] = '#800000'; // (dark red) Color for quoted text -- > 1 quote
eb548244 41 $color[14] = '#ff0000'; // (red) Color for quoted text -- >> 2 or more
ecf5c1bd 42 $color[15] = '#002266'; // (dark blue) Unselectable folders
25c07154 43 $color[16] = '#ff9933'; // (orange) Highlight color
44?>