Theme Options page under Appearance not available for site administrators. Only for SuperAdmin.
Fix in functions.php:
add_theme_page(__('Theme Options', 'monochrome'), __('Theme Options', 'monochrome'), 'edit_themes', basename(__FILE__), 'monochrome_add_theme_page');
Should be:
add_theme_page(__('Theme Options', 'monochrome'), __('Theme Options', 'monochrome'), 'edit_theme_options', basename(__FILE__), 'monochrome_add_theme_page');
edit_themes => edit_theme_options.