update randomizing themes for larger color array
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 27 Jun 2007 16:24:01 +0000 (16:24 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 27 Jun 2007 16:24:01 +0000 (16:24 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12485 7612ce4b-ef26-0410-bec9-ea0150e637f0

themes/greenhouse_effect.php
themes/in_the_pink.php
themes/kind_of_blue.php
themes/monostochastic.php
themes/shades_of_grey.php

index a3f9b93197c88a60417c44360535278382315e3b..e524d36bf0526999fbd8432d090ff41705c1b33f 100755 (executable)
@@ -25,10 +25,10 @@ include_once(SM_PATH . 'functions/strings.php');
 /** seed the random number generator **/
 sq_mt_randomize();
 
-for ($i = 0; $i <= 15; $i++) {
+for ($i = 0; $i <= 16; $i++) {
     /* background/foreground toggle **/
-    if (($i == 0) || ($i == 3) || ($i == 4) || ($i == 5)
-         || ($i == 9) || ($i == 10) || ($i == 12)) {
+    if ($i == 0 || $i == 3 || $i == 4 || $i == 5
+         || $i == 9 || $i == 10 || $i == 12 || $i == 16) {
         /* background */
         $g = mt_rand(248,255);
         $r = mt_rand(110,248);
index 8d91e4e15c22ff3441151945a6609370e232b35c..d2db4fadc50fd06e1c6564cd0ba006128955ed2f 100755 (executable)
@@ -26,9 +26,9 @@ include_once(SM_PATH . 'functions/strings.php');
 /* seed the random number generator */
 sq_mt_randomize();
 
-for ($i = 0; $i <= 15; $i++) {
+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) {
+    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 */
         $r = mt_rand(248,255);
         $b = mt_rand(140,255);
index 12552f2e879b7bf0c423b1521d3e7c2a5223794b..630b255a6362cb0cb95242a382f8b165cd115b20 100755 (executable)
@@ -26,9 +26,9 @@ include_once(SM_PATH . 'functions/strings.php');
 /** seed the random number generator */
 sq_mt_randomize();
 
-for ($i = 0; $i <= 15; $i++) {
+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) {
+    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 */
         $b = mt_rand(248,255);
         $r = mt_rand(180,255);
index 952ea41c19a68abe1233b8085b0ea434e57eebd7..2cc37c0f9fba5dd3129a73ae68c28f6bb9f57336 100755 (executable)
@@ -51,8 +51,8 @@ $gt = mt_rand($cmin_t,$cmax_t);
 $bt = mt_rand($cmin_t,$cmax_t);
 
 /** set array element as hex string with hashmark (for HTML output) **/
-for ($i = 0; $i <= 15; $i++) {
-    if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12) {
+for ($i = 0; $i <= 16; $i++) {
+    if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12 or $i == 16) {
         $color[$i] = sprintf('#%02X%02X%02X',$rb,$gb,$bb);
     } else {
         $color[$i] = sprintf('#%02X%02X%02X',$rt,$gt,$bt);
index 50592acbf03ad915d57a7a56b762f09cda5e58a8..83e5a62a865169a986fd4cdb19f99eed5b8e1966 100755 (executable)
@@ -25,9 +25,9 @@ include_once(SM_PATH . 'functions/strings.php');
 /** seed the random number generator */
 sq_mt_randomize();
 
-for ($i = 0; $i <= 15; $i++) {
+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) {
+    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 */
         $r = mt_rand(176,255);
         $g = $r;