slashdot_theme.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Name: Slashdot Theme
  4. * @author Luke Ehresman
  5. * Date: January 3, 2000
  6. * Comment This theme tries to mimic the color scheme from the
  7. * "News for Nerds" web site, www.slashdot.org.
  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. global $color;
  17. $color[0] = '#DCDCDC'; // (light gray) TitleBar
  18. $color[1] = '#800000'; // (red)
  19. $color[2] = '#CC0000'; // (light red) Warning/Error Messages
  20. $color[3] = '#006668'; // (/. color) Left Bar Background
  21. $color[4] = '#FFFFFF'; // (white) Normal Background
  22. $color[5] = '#BABABA'; // (darker gray) Table Headers
  23. $color[6] = '#000000'; // (black) Text on left bar
  24. $color[7] = '#004949'; // (light /. color) Links
  25. $color[8] = '#000000'; // (black) Normal text
  26. $color[9] = '#ABABAB'; // (mid-gray) Darker version of #0
  27. $color[10] = '#666666'; // (dark gray) Darker version of #9
  28. $color[11] = '#770000'; // (dark red) Special Folders color
  29. $color[12] = '#EAEAEA';
  30. $color[15] = '#ABABAB'; // (mid-gray) Unselectable folders
  31. ?>