'fieldset', '#title' => t('Color settings'), '#collapsible' => TRUE, '#collapsed' => TRUE, '#weight' => 90, '#description' => t('Use these settings to customize the colors of your site. If no stylesheet is selected the default colors will apply.'), ); $form['color']['color_schemes'] = array( '#type' => 'select', '#title' => t('Color Schemes'), '#default_value' => $settings['color_schemes'], '#options' => array( 'colors-default.css' => t('Default Color Scheme'), //'colors-mine.css' => t('My Color Scheme'), // add extra color css files, place these in your css/theme folder ), ); $form['color']['color_enable_schemes'] = array( '#type' => 'hidden', '#value' => $settings['color_enable_schemes'], ); } // endif color schemes // Add the base theme's settings. $form += adaptivetheme_settings($saved_settings, $defaults); // Return the form return $form; }