Add clickjacking protection (thanks to Asbjorn Thorsen and Geir Hansen for bringing...
[squirrelmail.git] / themes / spice_of_life_lite.php
CommitLineData
95b5b26d 1<?php
b7573679 2
3/**
c4309fbd 4 * Name: Spice of Life - Lite
c4309fbd 5 * Date: October 20, 2001
6 * Comment This theme generates random colors, featuring a
7 * lite background with dark text.
b7573679 8 *
4b4abf93 9 * @author Jorey Bump
ae5dddc0 10 * @copyright 2000-2011 The SquirrelMail Project Team
4b4abf93 11 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
12 * @version $Id$
7ce971d0 13 * @package squirrelmail
c4309fbd 14 * @subpackage themes
b7573679 15 */
16
2c34672a 17/** Prevent direct script loading */
f627180c 18if (isset($_SERVER['SCRIPT_FILENAME']) && $_SERVER['SCRIPT_FILENAME'] == __FILE__) {
2c34672a 19 die();
20}
21
54865657 22for ($i = 0; $i <= 16; $i++) {
b7573679 23 /** background/foreground toggle **/
54865657 24 if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12 or $i == 16) {
b7573679 25 /** background **/
26 $cmin = 128;
27 $cmax = 255;
28 } else {
29 /** text **/
30 $cmin = 0;
31 $cmax = 127;
32 }
33
34 /** generate random color **/
35 $r = mt_rand($cmin,$cmax);
36 $g = mt_rand($cmin,$cmax);
37 $b = mt_rand($cmin,$cmax);
38
39 /** set array element as hex string with hashmark (for HTML output) **/
1681f4d9 40 $color[$i] = sprintf('#%02X%02X%02X',$r,$g,$b);
b7573679 41}