spice_of_life.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. /**
  3. * Name: Spice of Life
  4. * @author Jorey Bump
  5. * Date: October 20, 2001
  6. * Comment Generates random colors for each frame,
  7. * featuring either a dark or light background.
  8. *
  9. * Copyright (c) 2000-2004 The SquirrelMail Project Team
  10. * Licensed under the GNU GPL. For full terms see the file COPYING.
  11. *
  12. * $Id$
  13. * @package squirrelmail
  14. * @subpackage themes
  15. */
  16. /** seed the random number generator **/
  17. sq_mt_randomize();
  18. /** light(1) or dark(0) background? **/
  19. $bg = mt_rand(0,1);
  20. /** range delimiter **/
  21. $bgrd = $bg * 128;
  22. for ($i = 0; $i <= 15; $i++) {
  23. /** background/foreground toggle **/
  24. if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12) {
  25. /** background **/
  26. $cmin = 0 + $bgrd;
  27. $cmax = 127 + $bgrd;
  28. } else {
  29. /** text **/
  30. $cmin = 128 - $bgrd;
  31. $cmax = 255 - $bgrd;
  32. }
  33. /** generate random color **/
  34. $r = mt_rand($cmin,$cmax);
  35. $g = mt_rand($cmin,$cmax);
  36. $b = mt_rand($cmin,$cmax);
  37. /** set array element as hex string with hashmark (for HTML output) **/
  38. $color[$i] = sprintf('#%02X%02X%02X',$r,$g,$b);
  39. }
  40. /* Reference from http://www.squirrelmail.org/wiki/CreatingThemes
  41. $color[0] = '#xxxxxx'; // Title bar at the top of the page header
  42. $color[1] = '#xxxxxx'; // Not currently used
  43. $color[2] = '#xxxxxx'; // Error messages (usually red)
  44. $color[3] = '#xxxxxx'; // Left folder list background color
  45. $color[4] = '#xxxxxx'; // Normal background color
  46. $color[5] = '#xxxxxx'; // Header of the message index // (From, Date,Subject)
  47. $color[6] = '#xxxxxx'; // Normal text on the left folder list
  48. $color[7] = '#xxxxxx'; // Links in the right frame
  49. $color[8] = '#xxxxxx'; // Normal text (usually black)
  50. $color[9] = '#xxxxxx'; // Darker version of #0
  51. $color[10] = '#xxxxxx'; // Darker version of #9
  52. $color[11] = '#xxxxxx'; // Special folders color (INBOX, Trash, Sent)
  53. $color[12] = '#xxxxxx'; // Alternate color for message list // Alters between #4 and this one
  54. $color[13] = '#xxxxxx'; // Color for quoted text -- > 1 quote
  55. $color[14] = '#xxxxxx'; // Color for quoted text -- >> 2 or more
  56. */
  57. ?>