Index: src/wp-admin/css/customize-controls.css
===================================================================
--- src/wp-admin/css/customize-controls.css	(revision 29578)
+++ src/wp-admin/css/customize-controls.css	(working copy)
@@ -145,7 +145,8 @@
 	padding-right: 54px;
 }
 
-.control-section.control-panel > .accordion-section-title:after {
+.control-section.control-panel > .accordion-section-title:after,
+#accordion-panel-themes .accordion-section-title:after {
 	content: "\f345";
 	background: #f5f5f5;
 	color: #555;
@@ -162,8 +163,18 @@
 	content: "\f341";
 }
 
+#accordion-panel-themes .accordion-section-title:after {
+	content: "\f341";
+}
+
+.rtl #accordion-panel-themes .accordion-section-title:after {
+	content: "\f345";
+}
+
 #customize-theme-controls .control-section.control-panel > h3.accordion-section-title:focus:after,
-#customize-theme-controls .control-section.control-panel > h3.accordion-section-title:hover:after {
+#customize-theme-controls .control-section.control-panel > h3.accordion-section-title:hover:after,
+#customize-theme-controls #accordion-panel-themes h3.accordion-section-title:focus:after,
+#customize-theme-controls #accordion-panel-themes h3.accordion-section-title:hover:after {
 	background: #ddd;
 	color: #000;
 	border: 1px solid #d9d9d9;
Index: src/wp-includes/class-wp-customize-manager.php
===================================================================
--- src/wp-includes/class-wp-customize-manager.php	(revision 29578)
+++ src/wp-includes/class-wp-customize-manager.php	(working copy)
@@ -1182,6 +1182,15 @@
 			'section'    => 'static_front_page',
 			'type'       => 'dropdown-pages',
 		) );
+
+		// Themes.
+		$this->add_panel( new WP_Customize_Themes_Panel( $this, 'themes', array(
+			'title'    => sprintf( __( 'Theme: %s' ), $this->theme()->display('Name') ),
+			'priority' => 0,
+		) ) );
+		$this->add_section( 'themes_placeholder', array( 'panel' => 'themes' ) );
+		$this->add_setting( 'themes_placeholder', array() );
+		$this->add_control( 'themes_placeholder', array( 'section' => 'themes_placeholder' ) );
 	}
 
 	/**
Index: src/wp-includes/class-wp-customize-panel.php
===================================================================
--- src/wp-includes/class-wp-customize-panel.php	(revision 29578)
+++ src/wp-includes/class-wp-customize-panel.php	(working copy)
@@ -198,4 +198,32 @@
 		</li>
 		<?php
 	}
+}
+
+/**
+ * A placeholder panel for themes.
+ *
+ * @package WordPress
+ * @subpackage Customize
+ * @since 4.1.0
+ */
+class WP_Customize_Themes_Panel extends WP_Customize_Panel {
+	
+	/**
+	 * Render the panel as a linked panel heading.
+	 *
+	 * @since 4.1.0
+	 */
+	function render() {
+		?>
+		<li id="accordion-panel-<?php echo esc_attr( $this->id ); ?>" class="control-section control-panel accordion-section">
+			<a href="<?php echo admin_url( 'themes.php' ); ?>" class="theme-switch">
+				<h3 class="accordion-section-title" tabindex="0">
+					<?php echo esc_html( $this->title ); ?>
+					<span class="screen-reader-text"><?php _e( 'Press return or enter to open this panel' ); ?></span>
+				</h3>
+			</a>
+		</li>
+		<?php
+	}
 }
\ No newline at end of file
