XHTML fixes
[squirrelmail.git] / themes / minimal_bw.php
CommitLineData
cc47a3f0 1<?php
c4309fbd 2/**
3 * @author Tomas Kuliavas
4 * Date: July 26, 2003
5 * Theme Name: 'Minimal BW Theme'
eb548244 6 *
c4309fbd 7 * This theme uses black color for text and white for background.
eb548244 8 *
c4309fbd 9 * Problem: $color[9] is used for background and for disabled links.
10 * @package squirrelmail
11 * @subpackage themes
12 */
cc47a3f0 13
14 global $color;
eb548244 15 $color[0] = '#ffffff'; // (white) TitleBar
cc47a3f0 16 $color[1] = '#000000'; // (black) (unused)
17 $color[2] = '#000000'; // (black) Warning/Error Messages
eb548244 18 $color[3] = '#ffffff'; // (white) Left Bar Background
19 $color[4] = '#ffffff'; // (white) Normal Background
20 $color[5] = '#ffffff'; // (white) Table Headers
cc47a3f0 21 $color[6] = '#000000'; // (black) Text on left bar
22 $color[7] = '#000000'; // (black) Links
23 $color[8] = '#000000'; // (black) Normal text
eb548244 24 $color[9] = '#ffffff'; // (white) Darker version of #0
25 $color[10] = '#ffffff'; // (white) Darker version of #9
cc47a3f0 26 $color[11] = '#000000'; // (black) Special Folders color
eb548244 27 $color[12] = '#ffffff'; // (white) Alternate color for message list
cc47a3f0 28 $color[13] = '#000000'; // (black) Color for quoted text -- > 1 quote
29 $color[14] = '#000000'; // (black) Color for quoted text -- >> 2 or more
30 $color[15] = '#000000'; // (black) Unselectable folders
eb548244 31?>