XHTML fixes
[squirrelmail.git] / themes / shades_of_grey.php
CommitLineData
95b5b26d 1<?php
767e0aed 2
3/**
c4309fbd 4 * Name: Shades of Grey
5 * @author Jorey Bump
6 * Date: October 20, 2001
7 * Comment This theme generates random colors, featuring a
8 * light greyish background with dark text.
767e0aed 9 *
82d304a0 10 * Copyright (c) 2000-2004 The SquirrelMail Project Team
767e0aed 11 * Licensed under the GNU GPL. For full terms see the file COPYING.
12 *
13 * $Id$
c4309fbd 14 * @package squirrelmail
15 * @subpackage themes
767e0aed 16 */
17
c4309fbd 18/** seed the random number generator */
767e0aed 19sq_mt_randomize();
20
ecf5c1bd 21for ($i = 0; $i <= 15; $i++) {
767e0aed 22 /* background/foreground toggle */
23 if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12) {
24 /* background */
25 $r = mt_rand(176,255);
26 $g = $r;
27 $b = $r;
28 } else {
29 /* text */
30 $cmin = 0;
31 $cmax = 127;
32
33 /** generate random color **/
34 $r = mt_rand($cmin,$cmax);
35 $g = mt_rand($cmin,$cmax);
36 $b = mt_rand($cmin,$cmax);
37 }
38
39 /* set array element as hex string with hashmark (for HTML output) */
1681f4d9 40 $color[$i] = sprintf('#%02X%02X%02X',$r,$g,$b);
767e0aed 41}
42
43
44/* Reference from http://www.squirrelmail.org/wiki/CreatingThemes
45
46$color[0] = '#xxxxxx'; // Title bar at the top of the page header
47$color[1] = '#xxxxxx'; // Not currently used
48$color[2] = '#xxxxxx'; // Error messages (usually red)
49$color[3] = '#xxxxxx'; // Left folder list background color
50$color[4] = '#xxxxxx'; // Normal background color
51$color[5] = '#xxxxxx'; // Header of the message index // (From, Date,Subject)
52$color[6] = '#xxxxxx'; // Normal text on the left folder list
53$color[7] = '#xxxxxx'; // Links in the right frame
54$color[8] = '#xxxxxx'; // Normal text (usually black)
55$color[9] = '#xxxxxx'; // Darker version of #0
56$color[10] = '#xxxxxx'; // Darker version of #9
57$color[11] = '#xxxxxx'; // Special folders color (INBOX, Trash, Sent)
58$color[12] = '#xxxxxx'; // Alternate color for message list // Alters between #4 and this one
59$color[13] = '#xxxxxx'; // Color for quoted text -- > 1 quote
60$color[14] = '#xxxxxx'; // Color for quoted text -- >> 2 or more
61
62*/
95b5b26d 63
eb548244 64?>