home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / admin / override.inc < prev    next >
Encoding:
Text File  |  2003-06-21  |  990 b   |  37 lines

  1. <?php
  2. /*
  3.  
  4. FILE: themes/theme_name/override.inc
  5. PURPOSE:
  6.     Override certain user preferences.  
  7.     Use with care.
  8. */
  9.  
  10. //This is a particularly strict override,
  11. //it overrides all user configurable colors.
  12. //Preferences you would like to allow users
  13. //to change should be commented out.
  14.  
  15. $my_colors["tool_bg"] = "#222244";
  16. $my_colors["tool_link"] = "#FFFFFF";
  17. $my_colors["folder_bg"] = "#222244";
  18. $my_colors["folder_link"] = "#FFFFFF";
  19. $my_colors["main_bg"] = "#f0f0f0";
  20. $my_colors["main_hilite"] = "#b1b1b9";
  21. $my_colors["main_text"] = "#000000";
  22. $my_colors["main_link"] = "#222222";
  23. $my_colors["main_head_bg"] = "#222244";
  24. $my_colors["main_head_txt"] = "#FFFFFF";
  25. $my_colors["main_darkbg"] = "#444466";
  26. $my_colors["main_light_txt"] = "#FFFFFF";
  27.  
  28. //dark: 000033, lighter-dark: 333366
  29. //dark: 4B4B69, lighter-drak: 5B5B79
  30.  
  31. //$my_colors["quotes"]="blue";
  32. //$my_colors["font_family"]="";
  33. //$my_colors["font_size"]="12";
  34. //$my_colors["small_font_size"]="10";
  35. //$my_colors["menu_font_size"]="12";
  36.  
  37. ?>