documenting one more get var
[squirrelmail.git] / themes / spice_of_life_lite.php
1 <?php
2
3 /**
4 * Name: Spice of Life - Lite
5 * Date: October 20, 2001
6 * Comment This theme generates random colors, featuring a
7 * lite background with dark text.
8 *
9 * @author Jorey Bump
10 * @copyright &copy; 2000-2006 The SquirrelMail Project Team
11 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
12 * @version $Id$
13 * @package squirrelmail
14 * @subpackage themes
15 */
16
17 /** seed the random number generator **/
18 sq_mt_randomize();
19
20 /** light(1) or dark(0) background? **/
21 $bg = mt_rand(0,1);
22
23 /** range delimiter **/
24 $bgrd = $bg * 128;
25
26 for ($i = 0; $i <= 15; $i++) {
27 /** background/foreground toggle **/
28 if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12) {
29 /** background **/
30 $cmin = 128;
31 $cmax = 255;
32 } else {
33 /** text **/
34 $cmin = 0;
35 $cmax = 127;
36 }
37
38 /** generate random color **/
39 $r = mt_rand($cmin,$cmax);
40 $g = mt_rand($cmin,$cmax);
41 $b = mt_rand($cmin,$cmax);
42
43 /** set array element as hex string with hashmark (for HTML output) **/
44 $color[$i] = sprintf('#%02X%02X%02X',$r,$g,$b);
45 }
46
47
48 /* Reference from http://www.squirrelmail.org/wiki/CreatingThemes
49
50 $color[0] = '#xxxxxx'; // Title bar at the top of the page header
51 $color[1] = '#xxxxxx'; // Not currently used
52 $color[2] = '#xxxxxx'; // Error messages (usually red)
53 $color[3] = '#xxxxxx'; // Left folder list background color
54 $color[4] = '#xxxxxx'; // Normal background color
55 $color[5] = '#xxxxxx'; // Header of the message index // (From, Date,Subject)
56 $color[6] = '#xxxxxx'; // Normal text on the left folder list
57 $color[7] = '#xxxxxx'; // Links in the right frame
58 $color[8] = '#xxxxxx'; // Normal text (usually black)
59 $color[9] = '#xxxxxx'; // Darker version of #0
60 $color[10] = '#xxxxxx'; // Darker version of #9
61 $color[11] = '#xxxxxx'; // Special folders color (INBOX, Trash, Sent)
62 $color[12] = '#xxxxxx'; // Alternate color for message list // Alters between #4 and this one
63 $color[13] = '#xxxxxx'; // Color for quoted text -- > 1 quote
64 $color[14] = '#xxxxxx'; // Color for quoted text -- >> 2 or more
65
66 */
67
68 ?>