Increment year in copyright notice.
[squirrelmail.git] / themes / spice_of_life_dark.php
index eff08e4633a19b51ffc7bb33080d9358b45e00a4..576a1b2fd102a2ac02d1628a3d6e9bd43c76a165 100755 (executable)
@@ -1,17 +1,18 @@
 <?php
 
 /**
- * spice_of_life_dark.php
- *    Name:    Spice of Life - Dark
- *    Author:  Jorey Bump
- *    Date:    October 20, 2001
- *    Comment: This theme generates random colors,
- *             featuring a dark background with light text.
+ * Name:   Spice of Life - Dark
+ * @author Jorey Bump
+ * Date:   October 20, 2001
+ * Comment This theme generates random colors,
+ *         featuring a dark background with light text.
  *
- * Copyright (c) 2000-2002 The SquirrelMail Project Team
+ * Copyright (c) 2000-2005 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * $Id$
+ * @package squirrelmail
+ * @subpackage themes
  */
 
 /** seed the random number generator **/
@@ -19,7 +20,7 @@ sq_mt_randomize();
 
 /** light(1) or dark(0) background? **/
 $bg = mt_rand(0,1);
+
 /** range delimiter **/
 $bgrd = $bg * 128;
 
@@ -41,7 +42,7 @@ for ($i = 0; $i <= 15; $i++) {
     $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);
+    $color[$i] = sprintf('#%02X%02X%02X',$r,$g,$b);
 }
 
 
@@ -65,4 +66,4 @@ $color[14]  = '#xxxxxx';  // Color for quoted text -- >> 2 or more
 
 */
 
-?>
+?>
\ No newline at end of file