Getting ready for 1.2.0 release.
[squirrelmail.git] / themes / spice_of_life_dark.php
CommitLineData
95b5b26d 1<?php
2 /** Author: Jorey Bump
3 Date: October 20, 2001
4 Theme Name: "Spice of Life - Dark"
5
6 This theme generates random colors, featuring a dark background with light text.
7
8 **/
9
10 /** seed the random number generator **/
11 sq_mt_randomize();
12
13 for ($i = 0; $i <= 14; $i++) {
14 /** background/foreground toggle **/
15 if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12) {
16 /** background **/
17 $cmin = 0;
18 $cmax = 127;
19 } else {
20 /** text **/
21 $cmin = 128;
22 $cmax = 255;
23 }
24
25 /** generate random color **/
26 $r = mt_rand($cmin,$cmax);
27 $g = mt_rand($cmin,$cmax);
28 $b = mt_rand($cmin,$cmax);
29
30 /** set array element as hex string with hashmark (for HTML output) **/
31 $color[$i] = sprintf("#%02X%02X%02X",$r,$g,$b);
32 }
33
34
35/** Reference from http://www.squirrelmail.org/wiki/CreatingThemes
36
37 $color[0] = '#xxxxxx'; // Title bar at the top of the page header
38 $color[1] = '#xxxxxx'; // Not currently used
39 $color[2] = '#xxxxxx'; // Error messages (usually red)
40 $color[3] = '#xxxxxx'; // Left folder list background color
41 $color[4] = '#xxxxxx'; // Normal background color
42 $color[5] = '#xxxxxx'; // Header of the message index // (From, Date,Subject)
43 $color[6] = '#xxxxxx'; // Normal text on the left folder list
44 $color[7] = '#xxxxxx'; // Links in the right frame
45 $color[8] = '#xxxxxx'; // Normal text (usually black)
46 $color[9] = '#xxxxxx'; // Darker version of #0
47 $color[10] = '#xxxxxx'; // Darker version of #9
48 $color[11] = '#xxxxxx'; // Special folders color (INBOX, Trash, Sent)
49 $color[12] = '#xxxxxx'; // Alternate color for message list // Alters between #4 and this one
50 $color[13] = '#xxxxxx'; // Color for quoted text -- > 1 quote
51 $color[14] = '#xxxxxx'; // Color for quoted text -- >> 2 or more
52
53**/
54
55?>