Index: src/wp-content/themes/twentyfifteen/inc/custom-header.php
===================================================================
--- src/wp-content/themes/twentyfifteen/inc/custom-header.php	(revision 30177)
+++ src/wp-content/themes/twentyfifteen/inc/custom-header.php	(working copy)
@@ -167,10 +167,12 @@
  * @since Twenty Fifteen 1.0
  */
 function twentyfifteen_header_background_color_css() {
+	$color_scheme            = twentyfifteen_get_color_scheme();
+	$default_color           = $color_scheme[1];
 	$header_background_color = get_theme_mod( 'header_background_color', '#ffffff' );
 
 	// Don't do anything if the current color is the default.
-	if ( '#ffffff' === $header_background_color ) {
+	if ( $header_background_color === $default_color ) {
 		return;
 	}
 
@@ -208,10 +210,12 @@
  * @since Twenty Fifteen 1.0
  */
 function twentyfifteen_sidebar_text_color_css() {
+	$color_scheme       = twentyfifteen_get_color_scheme();
+	$default_color      = $color_scheme[4];
 	$sidebar_link_color = get_theme_mod( 'sidebar_textcolor', '#333333' );
 
 	// Don't do anything if the current color is the default.
-	if ( '#333333' === $sidebar_link_color ) {
+	if ( $sidebar_link_color === $default_color ) {
 		return;
 	}
 
