ASTRA_THEME_SETTINGS . '[text-color]', 'default' => astra_get_option( 'text-color' ), 'type' => 'control', 'control' => 'ast-color', 'section' => $_section, 'priority' => 5, 'title' => __( 'Text Color', 'astra' ), ), /** * Option: Theme Color */ array( 'name' => ASTRA_THEME_SETTINGS . '[theme-color]', 'type' => 'control', 'control' => 'ast-color', 'section' => $_section, 'default' => astra_get_option( 'theme-color' ), 'priority' => 5, 'title' => __( 'Theme Color', 'astra' ), ), /** * Option: Link Color */ array( 'name' => ASTRA_THEME_SETTINGS . '[link-color]', 'section' => $_section, 'type' => 'control', 'control' => 'ast-color', 'default' => astra_get_option( 'link-color' ), 'priority' => 5, 'title' => __( 'Link Color', 'astra' ), ), /** * Option: Link Hover Color */ array( 'name' => ASTRA_THEME_SETTINGS . '[link-h-color]', 'section' => $_section, 'default' => astra_get_option( 'link-h-color' ), 'type' => 'control', 'control' => 'ast-color', 'priority' => 15, 'title' => __( 'Link Hover Color', 'astra' ), ), ); $configurations = array_merge( $configurations, $_configs ); return $configurations; } } } new Astra_Body_Colors_Configs();