fix from Alexandros Vellis regarding missed SM_PATH statement
[squirrelmail.git] / themes / default_theme.php
CommitLineData
8eaebe74 1<?php
2 /** Author: Luke Ehresman
3 Date: January 2, 2000
ecf5c1bd 4 Theme Name: 'Default Theme'
8eaebe74 5
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:
ecf5c1bd 14 Please email any themes you create to captbunzo@squirrelmail.org
15 for inclusion in further releases of SquirrelMail and for download
16 from the web page.
8eaebe74 17 **/
18
f740c049 19 global $color;
ecf5c1bd 20 $color[0] = '#DCDCDC'; // (light gray) TitleBar
21 $color[1] = '#800000'; // (red)
22 $color[2] = '#CC0000'; // (light red) Warning/Error Messages
23 $color[3] = '#A0B8C8'; // (green-blue) Left Bar Background
24 $color[4] = '#FFFFFF'; // (white) Normal Background
25 $color[5] = '#FFFFCC'; // (light yellow) Table Headers
26 $color[6] = '#000000'; // (black) Text on left bar
27 $color[7] = '#0000CC'; // (blue) Links
28 $color[8] = '#000000'; // (black) Normal text
29 $color[9] = '#ABABAB'; // (mid-gray) Darker version of #0
30 $color[10] = '#666666'; // (dark gray) Darker version of #9
31 $color[11] = '#770000'; // (dark red) Special Folders color
32 $color[12] = '#EDEDED';
33 $color[15] = '#002266'; // (dark blue) Unselectable folders
8eaebe74 34?>