Index: modules/color/color.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/color/color.module,v
retrieving revision 1.24
diff -u -p -r1.24 color.module
--- modules/color/color.module	6 Aug 2007 12:54:39 -0000	1.24
+++ modules/color/color.module	30 Sep 2007 10:43:35 -0000
@@ -2,6 +2,21 @@
 // $Id: color.module,v 1.24 2007/08/06 12:54:39 goba Exp $
 
 /**
+ * Implementation of hook_help
+ */
+function color_help($section = '') {
+  $output = '';
+  switch ($section) {
+    case 'admin/help#color':
+      $output = '<p>'. t('The color module allows the admin to change the color scheme of a site completely. However, a theme must be specifically configured to use the color module. Garland, the default theme that Drupal installs with, uses it, as does its fixed-width version Minnelli. You can change the color of links, certain backgrounds, the text, and more if your theme has been built to utilize color module. Color module requires your <a href="@url">file download method</a> to be set to public.', array('@url' => url('admin/settings/file-system'))). '</p>';
+      $output .= '<p>'. t("It is important to note that the color module saves a copy of the theme's style.css into the files directory, and calls it after your themes style.css. This means that if you make other style changes in your theme, you must submit your color settings again, even if they haven't changed. This has the effect of copying the theme's style to the files directory."). '</p>';
+      $output .= '<p>'. t('If you are interested in integrating the color module with your theme, take a look at the <a href="@url">handbook page</a>.', array('@url' => url('http://drupal.org/node/108459'))) .'</p>';
+      return $output;
+  }
+}
+
+
+/**
  * Implementation of hook_theme()
  */
 function color_theme() {
