diff --git a/wp-content/themes/twentyseventeen/inc/color-patterns.php b/wp-content/themes/twentyseventeen/inc/color-patterns.php index c3913e1e6b..a59e64457f 100644 --- a/wp-content/themes/twentyseventeen/inc/color-patterns.php +++ b/wp-content/themes/twentyseventeen/inc/color-patterns.php @@ -557,5 +557,15 @@ body.colors-custom, } }'; - return $css; + + /** + * Filters Twenty Seventeen custom colors CSS. + * + * @since Twenty Seventeen 1.0 + * + * @param $css string Base theme colors CSS. + * @param $hue int The user's selected color hue. + * @param $saturation string Filtered theme color saturation level. + */ + return apply_filters( 'twentyseventeen_custom_colors_css', $css, $hue, $saturation ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 9a89367784..6cd85baf8f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39384'; +$wp_version = '4.8-alpha-39386'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.