1 color.module color_theme()

Implements hook_theme().

File

core/modules/color/color.module, line 10
Allows users to change the color scheme of themes.

Code

function color_theme() {
  return array(
    'color_preview' => array(
      'render element' => 'form',
      'file' => 'color.theme.inc',
    ),
  );
}