We're living in 2004 now... perl is your friend for these kinds of things :)
[squirrelmail.git] / themes / minimal_bw.php
1 <?php
2 /**
3 * @author Tomas Kuliavas
4 * Date: July 26, 2003
5 * Theme Name: 'Minimal BW Theme'
6 *
7 * This theme uses black color for text and white for background.
8 *
9 * Problem: $color[9] is used for background and for disabled links.
10 * @package squirrelmail
11 * @subpackage themes
12 */
13
14 global $color;
15 $color[0] = '#FFFFFF'; // (white) TitleBar
16 $color[1] = '#000000'; // (black) (unused)
17 $color[2] = '#000000'; // (black) Warning/Error Messages
18 $color[3] = '#FFFFFF'; // (white) Left Bar Background
19 $color[4] = '#FFFFFF'; // (white) Normal Background
20 $color[5] = '#FFFFFF'; // (white) Table Headers
21 $color[6] = '#000000'; // (black) Text on left bar
22 $color[7] = '#000000'; // (black) Links
23 $color[8] = '#000000'; // (black) Normal text
24 $color[9] = '#FFFFFF'; // (white) Darker version of #0
25 $color[10] = '#FFFFFF'; // (white) Darker version of #9
26 $color[11] = '#000000'; // (black) Special Folders color
27 $color[12] = '#FFFFFF'; // (white) Alternate color for message list
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
31 ?>