How to reset (clear) theme settings

I’ve found the solution, maybe it’ll be useful to anyone:

function reset_mytheme_options() { 
    remove_theme_mods();
}
add_action( 'after_switch_theme', 'reset_mytheme_options' );