color_get_info($theme)
color/color.module, line 69
Retrieve the color.module info for a particular theme.
<?php
function color_get_info($theme) {
$path = drupal_get_path('theme', $theme);
$file = $path .'/color/color.inc';
if ($path && file_exists($file)) {
include $file;
return $info;
}
}
?>