default_theme.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /** Author: Luke Ehresman
  3. Date: January 2, 2000
  4. Theme Name: 'Default Theme'
  5. This is the default theme that comes standard with SquirrelMail.
  6. Most of the colors were taken from mail.yahoo.com's theme on their
  7. site.
  8. To create a new theme, just copy this file, and edit the colors.
  9. Be sure to rename the file and keep the original, just in case.
  10. NOTE:
  11. Please email any themes you create to captbunzo@squirrelmail.org
  12. for inclusion in further releases of SquirrelMail and for download
  13. from the web page.
  14. **/
  15. global $color;
  16. $color[0] = '#DCDCDC'; // (light gray) TitleBar
  17. $color[1] = '#800000'; // (red)
  18. $color[2] = '#CC0000'; // (light red) Warning/Error Messages
  19. $color[3] = '#A0B8C8'; // (green-blue) Left Bar Background
  20. $color[4] = '#FFFFFF'; // (white) Normal Background
  21. $color[5] = '#FFFFCC'; // (light yellow) Table Headers
  22. $color[6] = '#000000'; // (black) Text on left bar
  23. $color[7] = '#0000CC'; // (blue) Links
  24. $color[8] = '#000000'; // (black) Normal text
  25. $color[9] = '#ABABAB'; // (mid-gray) Darker version of #0
  26. $color[10] = '#666666'; // (dark gray) Darker version of #9
  27. $color[11] = '#770000'; // (dark red) Special Folders color
  28. $color[12] = '#EDEDED';
  29. $color[15] = '#002266'; // (dark blue) Unselectable folders
  30. ?>