function colors_install in Colors 7
Implements hook_install().
File
- ./
colors.install, line 11 - Install, update and uninstall functions for the colors module.
Code
function colors_install() {
$color_options = array(
'background' => '#3366cc',
'border' => '#3366cc',
'text' => '#ffffff',
);
colors_set_colors('colors_default', $color_options);
}