/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 
//Change the Customizer color palette presets
add_action('customize_controls_print_footer_scripts', function () {
  ?>
  <script>
    jQuery(document).ready(function($){
      $('.wp-picker-container').iris({
        mode: 'hsl',
        controls: {
        horiz: 'h', // square horizontal displays hue
        vert: 's', // square vertical displays saturdation
        strip: 'l' // slider displays lightness
      },
        palettes: ['#127475', '#0E9594', '#F2542D', '#562C2C', '#F5DFBB']
      })
    });
  </script>
  <?php
});