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