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