How do I remove ‘Active Theme’ section from Customizer?

Untested, but this should do the trick:

function wpse293862_remove_themes_panel() {     
  global $wp_customize;

  $wp_customize->remove_panel( 'themes' );
} 

add_action( 'customize_register', 'wpse293862_remove_themes_panel', 11 );