minimal_bw.php 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * @author Tomas Kuliavas
  4. * Date: July 26, 2003
  5. * Theme Name: 'Minimal BW Theme'
  6. *
  7. * This theme uses black color for text and white for background.
  8. *
  9. * Problem: $color[9] is used for background and for disabled links.
  10. * @package squirrelmail
  11. * @subpackage themes
  12. */
  13. global $color;
  14. $color[0] = '#FFFFFF'; // (white) TitleBar
  15. $color[1] = '#000000'; // (black) (unused)
  16. $color[2] = '#000000'; // (black) Warning/Error Messages
  17. $color[3] = '#FFFFFF'; // (white) Left Bar Background
  18. $color[4] = '#FFFFFF'; // (white) Normal Background
  19. $color[5] = '#FFFFFF'; // (white) Table Headers
  20. $color[6] = '#000000'; // (black) Text on left bar
  21. $color[7] = '#000000'; // (black) Links
  22. $color[8] = '#000000'; // (black) Normal text
  23. $color[9] = '#FFFFFF'; // (white) Darker version of #0
  24. $color[10] = '#FFFFFF'; // (white) Darker version of #9
  25. $color[11] = '#000000'; // (black) Special Folders color
  26. $color[12] = '#FFFFFF'; // (white) Alternate color for message list
  27. $color[13] = '#000000'; // (black) Color for quoted text -- > 1 quote
  28. $color[14] = '#000000'; // (black) Color for quoted text -- >> 2 or more
  29. $color[15] = '#000000'; // (black) Unselectable folders
  30. ?>