I'm trying to do a theme-settings.php, and I have it as far as I can tell exactly the same as everything I have ever seen on any page tutorial about this. But some reason it's not working, which means I'm missing something.
thinkrium.info
name = Thinkrium
description = Thinkrium theme.
core=7.x
regions[content] = Thinkrium Content
regions[left_nav_bar] = Thinkrium Main Navigation
regions[footer] = Thinkrium Footer
regions[header] = Thinkrium Header
stylesheets[all][] = css/style.css
stylesheets[all][] = css/overlay.css
scripts[] = js/left_nav_bar.js
scripts[] = js/overlay.js
settings[hidden_text_color] = #0000ff
settings[hidden_background_color] = #000000
Here's theme-settings.php
$form['hidden_text_color'] = array(
'#type' => 'hidden',
"#attributes" => array('id' => 'hidden_text_color'),
'#default_value' => theme_get_setting('hidden_text_color'),
);
$form['hidden_background_color'] = array(
'#type' => 'hidden',
"#attributes" => array('id' => 'hidden_background_color'),
'#default_value' => theme_get_setting('hidden_background_color'),
);
I am getting nothing at all.