get_section( 'colors' )->panel = 'beauty-studio-design-panel'; $wp_customize->get_section( 'colors' )->title = esc_html__( 'Basic Color', 'beauty-studio' ); $wp_customize->get_section( 'background_image' )->priority = 100; /*Primary color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-primary-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-primary-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'beauty_studio_theme_options[beauty-studio-primary-color]', array( 'label' => esc_html__( 'Primary Color', 'beauty-studio' ), 'section' => 'colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-primary-color]', 'type' => 'color' ) ) ); /*Header TOP color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-header-top-bg-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-header-top-bg-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'beauty_studio_theme_options[beauty-studio-header-top-bg-color]', array( 'label' => esc_html__( 'Header Top Background Color', 'beauty-studio' ), 'description'=> esc_html__( 'Also used as secondary color', 'beauty-studio' ), 'section' => 'colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-header-top-bg-color]', 'type' => 'color' ) ) ); /* Footer Background Color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-footer-bg-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-footer-bg-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'beauty_studio_theme_options[beauty-studio-footer-bg-color]', array( 'label' => esc_html__( 'Footer Background Color', 'beauty-studio' ), 'section' => 'colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-footer-bg-color]', 'type' => 'color' ) ) ); /*Footer Bottom Background Color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-footer-bottom-bg-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-footer-bottom-bg-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'beauty_studio_theme_options[beauty-studio-footer-bottom-bg-color]', array( 'label' => esc_html__( 'Footer Bottom Background Color', 'beauty-studio' ), 'section' => 'colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-footer-bottom-bg-color]', 'type' => 'color' ) ) ); /*Site Title Color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-site-title-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-site-title-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-site-title-color]', array( 'label' => esc_html__( 'Site Title Color', 'beauty-studio' ), 'section' => 'colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-site-title-color]', 'type' => 'color' ) ); $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-site-title-hover-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-site-title-hover-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-site-title-hover-color]', array( 'label' => esc_html__( 'Site Title Hover Color', 'beauty-studio' ), 'section' => 'colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-site-title-hover-color]', 'type' => 'color' ) ); /*Site Tagline Color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-site-tagline-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-site-tagline-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-site-tagline-color]', array( 'label' => esc_html__( 'Site Tagline Color', 'beauty-studio' ), 'section' => 'colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-site-tagline-color]', 'type' => 'color' ) ); /*Body Paragraph Color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-body-text-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-body-text-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-body-text-color]', array( 'label' => esc_html__( 'Body Paragraph Color', 'beauty-studio' ), 'section' => 'colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-body-text-color]', 'type' => 'color' ) ); /*Heading Color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-heading-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-heading-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-heading-color]', array( 'label' => esc_html__( 'Heading Color', 'beauty-studio' ), 'description'=> esc_html__( 'H1-H6 color', 'beauty-studio' ), 'section' => 'colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-heading-color]', 'type' => 'color' ) ); /*Link color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-link-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-link-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-link-color]', array( 'label' => esc_html__( 'Link Color', 'beauty-studio' ), 'section' => 'colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-link-color]', 'type' => 'color' ) ); /*Link Hover color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-link-hover-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-link-hover-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-link-hover-color]', array( 'label' => esc_html__( 'Link Hover Color', 'beauty-studio' ), 'section' => 'colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-link-hover-color]', 'type' => 'color' ) );