default_theme.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * @author Luke Ehresman
  4. * January 2, 2000
  5. * Theme Name: 'Default Theme'
  6. * This is the default theme that comes standard with SquirrelMail.
  7. * Most of the colors were taken from mail.yahoo.com's theme on their
  8. * site.
  9. *
  10. * To create a new theme, just copy this file, and edit the colors.
  11. * Be sure to rename the file and keep the original, just in case.
  12. *
  13. * NOTE:
  14. * You might want to submit the theme you create to our Patches tracker
  15. * on http://sourceforge.net/projects/squirrelmail
  16. * for inclusion in further releases of SquirrelMail.
  17. * @package squirrelmail
  18. * @subpackage themes
  19. **/
  20. global $color;
  21. $color[0] = '#DCDCDC'; // (light gray) TitleBar
  22. $color[1] = '#800000'; // (red)
  23. $color[2] = '#CC0000'; // (light red) Warning/Error Messages
  24. $color[3] = '#A0B8C8'; // (green-blue) Left Bar Background
  25. $color[4] = '#FFFFFF'; // (white) Normal Background
  26. $color[5] = '#FFFFCC'; // (light yellow) Table Headers
  27. $color[6] = '#000000'; // (black) Text on left bar
  28. $color[7] = '#0000CC'; // (blue) Links
  29. $color[8] = '#000000'; // (black) Normal text
  30. $color[9] = '#ABABAB'; // (mid-gray) Darker version of #0
  31. $color[10] = '#666666'; // (dark gray) Darker version of #9
  32. $color[11] = '#770000'; // (dark red) Special Folders color
  33. $color[12] = '#EDEDED'; // (light gray) Alternate color for message list
  34. $color[13] = '#800000'; // (dark red) Color for quoted text -- > 1 quote
  35. $color[14] = '#FF0000'; // (red) Color for quoted text -- >> 2 or more
  36. $color[15] = '#002266'; // (dark blue) Unselectable folders
  37. ?>