WordPress Customize panel – accessing the values

$wp_customize->add_setting('theme_options[copyright]', array(
'default'    => '1',
'capability' => 'edit_theme_options',
'type'       => 'option',
));

There is nothing wrong except the default value (missing). You cant use your setting till you store it a value.