theme style police
[squirrelmail.git] / themes / shades_of_grey.php
CommitLineData
95b5b26d 1<?php
2 /** Author: Jorey Bump
3 Date: October 20, 2001
4 Theme Name: "Shades of Grey"
5
6 This theme generates random colors, featuring a light greyish background with dark text.
7
8 **/
9
10 /** seed the random number generator **/
813bcea3 11 sq_mt_randomize();
95b5b26d 12
13 for ($i = 0; $i <= 14; $i++) {
14 if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12) {
15 /** background **/
16 $r = mt_rand(176,255);
17 $g = $r;
18 $b = $r;
19 } else {
20 /** text **/
21 $cmin = 0;
22 $cmax = 127;
23
24 /** generate random color **/
25 $r = mt_rand($cmin,$cmax);
26 $g = mt_rand($cmin,$cmax);
27 $b = mt_rand($cmin,$cmax);
28 }
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?>