adding two themes. #1217066 and #1217069
[squirrelmail.git] / themes / shades_of_grey.php
1 <?php
2
3 /**
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.
9 *
10 * Copyright (c) 2000-2005 The SquirrelMail Project Team
11 * Licensed under the GNU GPL. For full terms see the file COPYING.
12 *
13 * $Id$
14 * @package squirrelmail
15 * @subpackage themes
16 */
17
18 /** seed the random number generator */
19 sq_mt_randomize();
20
21 for ($i = 0; $i <= 15; $i++) {
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) */
40 $color[$i] = sprintf('#%02X%02X%02X',$r,$g,$b);
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 */
63
64 ?>