Index: wp-content/themes/twentythirteen/functions.php
===================================================================
--- wp-content/themes/twentythirteen/functions.php	(revision 23470)
+++ wp-content/themes/twentythirteen/functions.php	(working copy)
@@ -552,8 +552,9 @@
  * @return void
  */
 function twentythirteen_customize_register( $wp_customize ) {
-	$wp_customize->get_setting( 'blogname' )->transport        = 'postMessage';
-	$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
+	$wp_customize->get_setting( 'blogname' )->transport         = 'postMessage';
+	$wp_customize->get_setting( 'blogdescription' )->transport  = 'postMessage';
+	$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
 }
 add_action( 'customize_register', 'twentythirteen_customize_register' );
 
Index: wp-content/themes/twentythirteen/js/theme-customizer.js
===================================================================
--- wp-content/themes/twentythirteen/js/theme-customizer.js	(revision 23470)
+++ wp-content/themes/twentythirteen/js/theme-customizer.js	(working copy)
@@ -17,4 +17,10 @@
 			$( '.site-description' ).text( to );
 		} );
 	} );
-} )( jQuery );
\ No newline at end of file
+	// Header text color
+	wp.customize( 'header_textcolor', function( value ) {
+		value.bind( function( to ) {
+			$( '.site-title a, .site-description' ).css( 'color',  to );
+		} );
+	} );
+} )( jQuery );
