Index: wp-content/themes/twentyfourteen/inc/customizer.php
===================================================================
--- wp-content/themes/twentyfourteen/inc/customizer.php	(revision 25762)
+++ wp-content/themes/twentyfourteen/inc/customizer.php	(working copy)
@@ -8,6 +8,8 @@
 
 /**
  * Add postMessage support for site title and description for the Theme Customizer.
+ * Remove the header text color control, as it isn't very useful considering the solid background color.
+ * Add the setting and control for the custom accent color option.
  *
  * @param WP_Customize_Manager $wp_customize Theme Customizer object.
  */
@@ -14,6 +16,8 @@
 function twentyfourteen_customize_register( $wp_customize ) {
 	$wp_customize->get_setting( 'blogname' )->transport        = 'postMessage';
 	$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
+	
+	$wp_customize->remove_control( 'header_textcolor' );
 
 	$wp_customize->add_setting( 'accent_color', array(
 		'default'           => '#24890d',