X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=themes%2Fspice_of_life.php;h=725eb56abdff67e9d163919136cdab8b67240b1f;hp=6e519162bc85ef8e198c56462d5586d1d678b9cd;hb=a820ac9dc88f67eed1a9d9bac551e91d1c6b7d96;hpb=95b5b26d396622b5ae99a56d030b86725220d640 diff --git a/themes/spice_of_life.php b/themes/spice_of_life.php old mode 100755 new mode 100644 index 6e519162..725eb56a --- a/themes/spice_of_life.php +++ b/themes/spice_of_life.php @@ -1,61 +1,47 @@ 1 quote - $color[14] = '#xxxxxx'; // Color for quoted text -- >> 2 or more - -**/ - -?> +/** + * Name: Spice of Life + * Date: October 20, 2001 + * Comment Generates random colors for each frame, + * featuring either a dark or light background. + * + * @author Jorey Bump + * @copyright © 2000-2009 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + * @version $Id$ + * @package squirrelmail + * @subpackage themes + */ + +/** Prevent direct script loading */ +if (isset($_SERVER['SCRIPT_FILENAME']) && $_SERVER['SCRIPT_FILENAME'] == __FILE__) { + die(); +} + +/** light(1) or dark(0) background? **/ +$bg = mt_rand(0,1); + +/** range delimiter **/ +$bgrd = $bg * 128; + +for ($i = 0; $i <= 16; $i++) { + /** background/foreground toggle **/ + if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12 or $i == 16) { + /** background **/ + $cmin = 0 + $bgrd; + $cmax = 127 + $bgrd; + } else { + /** text **/ + $cmin = 128 - $bgrd; + $cmax = 255 - $bgrd; + } + + /** generate random color **/ + $r = mt_rand($cmin,$cmax); + $g = mt_rand($cmin,$cmax); + $b = mt_rand($cmin,$cmax); + + /** set array element as hex string with hashmark (for HTML output) **/ + $color[$i] = sprintf('#%02X%02X%02X',$r,$g,$b); +}