kind_of_blue.php 2.0 KB

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