use PAGE_NAME in themes and templates
[squirrelmail.git] / themes / shades_of_grey.php
CommitLineData
95b5b26d 1<?php
767e0aed 2
3/**
c4309fbd 4 * Name: Shades of Grey
c4309fbd 5 * Date: October 20, 2001
6 * Comment This theme generates random colors, featuring a
7 * light greyish background with dark text.
767e0aed 8 *
4b4abf93 9 * @author Jorey Bump
4b5049de 10 * @copyright &copy; 2000-2007 The SquirrelMail Project Team
4b4abf93 11 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
12 * @version $Id$
c4309fbd 13 * @package squirrelmail
14 * @subpackage themes
767e0aed 15 */
16
2c34672a 17/** Prevent direct script loading */
f627180c 18if (isset($_SERVER['SCRIPT_FILENAME']) && $_SERVER['SCRIPT_FILENAME'] == __FILE__) {
2c34672a 19 die();
20}
21
22/** load sq_mt_randomize() */
23include_once(SM_PATH . 'functions/strings.php');
24
c4309fbd 25/** seed the random number generator */
767e0aed 26sq_mt_randomize();
27
f5952e79 28for ($i = 0; $i <= 16; $i++) {
767e0aed 29 /* background/foreground toggle */
f5952e79 30 if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12 or $i == 16) {
767e0aed 31 /* background */
32 $r = mt_rand(176,255);
33 $g = $r;
34 $b = $r;
35 } else {
36 /* text */
37 $cmin = 0;
38 $cmax = 127;
39
40 /** generate random color **/
41 $r = mt_rand($cmin,$cmax);
42 $g = mt_rand($cmin,$cmax);
43 $b = mt_rand($cmin,$cmax);
44 }
45
46 /* set array element as hex string with hashmark (for HTML output) */
1681f4d9 47 $color[$i] = sprintf('#%02X%02X%02X',$r,$g,$b);
767e0aed 48}