function color_theme

7.x color.module color_theme()
6.x color.module color_theme()

Implements hook_theme().

File

drupal-7.x/modules/color/color.module, line 28
Allows users to change the color scheme of themes.

Code

function color_theme() {
  return array(
    'color_scheme_form' => array(
      'render element' => 'form',
    ),
  );
}