Function for adding customizer css to the head of the wp document
function mytheme_customize_css()
{
?>
<style type="text/css">
h1 { color: #<?php echo get_theme_mod('header_color', '000000'); ?>; }
</style>
<?php
}
add_action( 'wp_head', 'mytheme_customize_css');