You are here

function color_theme in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/color/color.module \color_theme()

Implements hook_theme().

File

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

Code

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