Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
inc
/
options
/
Editing: color.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; use \Redux; $opt_name = Constants::$theme_options; Redux::setSection( $opt_name, array( 'title' => esc_html__( 'Colors', 'koncrete' ), 'id' => 'color_section', 'heading' => '', 'icon' => 'el el-eye-open', 'fields' => array( array( 'id' => 'section-color-sitewide', 'type' => 'section', 'title' => esc_html__( 'Sitewide Colors', 'koncrete' ), 'indent' => true, ), array( 'id' => 'primary_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Primary Color', 'koncrete' ), 'default' => '#ffb400', ), array( 'id' => 'secondary_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Secondary Color', 'koncrete' ), 'default' => '#ffc92b', ), array( 'id' => 'section-color-menu', 'type' => 'section', 'title' => esc_html__( 'Main Menu', 'koncrete' ), 'indent' => true, ), array( 'id' => 'menu_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Menu Color', 'koncrete' ), 'default' => '#111111', ), array( 'id' => 'menu_hover_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Menu Hover Color', 'koncrete' ), 'default' => '#ffb400', ), array( 'id' => 'transparent_menu_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Transparent Menu Color', 'koncrete' ), 'default' => '#fff', ), array( 'id' => 'transparent_menu_hover_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Transparent Menu Hover Color', 'koncrete' ), 'default' => '#ffb400', ), array( 'id' => 'section-color-submenu', 'type' => 'section', 'title' => esc_html__( 'Sub Menu', 'koncrete' ), 'indent' => true, ), array( 'id' => 'submenu_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Submenu Color', 'koncrete' ), 'default' => '#111111', ), array( 'id' => 'submenu_hover_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Submenu Hover Color', 'koncrete' ), 'default' => '#ffb400', ), array( 'id' => 'submenu_column_header_bg', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Submenu column header background Color', 'koncrete' ), 'default' => '#111', ), array( 'id' => 'section-color-banner', 'type' => 'section', 'title' => esc_html__( 'Banner', 'koncrete' ), 'indent' => true, ), array( 'id' => 'banner_title', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Banner Title Color', 'koncrete' ), 'default' => '#fff', ), array( 'id' => 'section-color-breadcrumb', 'type' => 'section', 'title' => esc_html__( 'Breadcrumb', 'koncrete' ), 'indent' => true, ), array( 'id' => 'breadcrumb_link_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Breadcrumb Link Color', 'koncrete' ), 'default' => '#9b9a9a', ), array( 'id' => 'breadcrumb_link_hover_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Breadcrumb Link Hover Color', 'koncrete' ), 'default' => '#ffb400', ), array( 'id' => 'breadcrumb_active_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Active Breadcrumb Color', 'koncrete' ), 'default' => '#ffb400', ), array( 'id' => 'breadcrumb_seperator_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Breadcrumb Seperator Color', 'koncrete' ), 'default' => '#9b9a9a', ), array( 'id' => 'section-color-footer', 'type' => 'section', 'title' => esc_html__( 'Footer Area', 'koncrete' ), 'indent' => true, ), array( 'id' => 'footer_bgcolor', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Footer Background Color', 'koncrete' ), 'default' => '#121212', ), array( 'id' => 'footer_title_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Footer Title Text Color', 'koncrete' ), 'default' => '#ffffff', ), array( 'id' => 'footer_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Footer Body Text Color', 'koncrete' ), 'default' => '#cccccc', ), array( 'id' => 'footer_link_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Footer Body Link Color', 'koncrete' ), 'default' => '#cccccc', ), array( 'id' => 'footer_link_hover_color', 'type' => 'color', 'transparent' => false, 'title' => esc_html__( 'Footer Body Link Hover Color', 'koncrete' ), 'default' => '#ffb400', ), ) ) );
Save
Cancel