<?php
/**
 * Design
 *
 * @package Doo
 */

// Add new section
$wp_customize->add_section( 'design_section', array(
  'title'                => esc_html__( 'Design', 'doo' ),
  'priority'             => 21,
) );

// Primary color
$wp_customize->add_setting( 'design_primary_color', array(
  'default'              => '#c51e3a',
  'sanitize_callback'    => 'sanitize_hex_color',
) );
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'design_primary_color', array(
  'label'                => esc_html__( 'Primary Color', 'doo' ),
  'section'              => 'design_section',
) ) );

// Background color
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'background_color', array(
  'label'                => esc_html__( 'Background Color', 'doo' ),
  'section'              => 'design_section',
) ) );
