1) { $opacity = 1.0; } $output = implode(",",$rgb).','.$opacity; } else { $output = implode(",",$rgb); } return $output; } } if ( ! function_exists( 'multifox_html_output' ) ) { function multifox_html_output( $html ) { return apply_filters( 'multifox_html_output', $html ); } } if ( ! function_exists( 'multifox_theme_defaults' ) ) { /** * Function to load default values */ function multifox_theme_defaults() { $defaults = array ( 'primary_color' => '#047469', 'primary_color_rgb' => multifox_hex2rgba('#047469', false), 'secondary_color' => '#fbbf65', 'secondary_color_rgb' => multifox_hex2rgba('#fbbf65', false), 'tertiary_color' => '#fff2e0', 'tertiary_color_rgb' => multifox_hex2rgba('#fff2e0', false), 'body_bg_color' => '#ffffff', 'body_bg_color_rgb' => multifox_hex2rgba('#ffffff', false), 'body_text_color' => '#555555', 'body_text_color_rgb' => multifox_hex2rgba('#555555', false), 'headalt_color' => '#141414', 'headalt_color_rgb' => multifox_hex2rgba('#141414', false), 'link_color' => '#141414', 'link_color_rgb' => multifox_hex2rgba('#141414', false), 'link_hover_color' => '#047469', 'link_hover_color_rgb' => multifox_hex2rgba('#047469', false), 'border_color' => '#dddddd', 'border_color_rgb' => multifox_hex2rgba('#dddddd', false), 'accent_text_color' => '#ffffff', 'accent_text_color_rgb' => multifox_hex2rgba('#ffffff', false), 'body_typo' => array ( 'font-family' => "Open Sans", 'font-fallback' => '"Open Sans", sans-serif', 'font-weight' => 400, 'fs-desktop' => 16, 'fs-desktop-unit' => 'px', 'lh-desktop' => 1.875, 'lh-desktop-unit' => '' ), 'h1_typo' => array ( 'font-family' => "Montserrat", 'font-fallback' => '"Montserrat", sans-serif', 'font-weight' => 700, 'fs-desktop' => 46, 'fs-desktop-unit' => 'px', 'lh-desktop' => 1.3, 'lh-desktop-unit' => '' ), 'h2_typo' => array ( 'font-family' => "Montserrat", 'font-fallback' => '"Montserrat", sans-serif', 'font-weight' => 700, 'fs-desktop' => 40, 'fs-desktop-unit' => 'px', 'lh-desktop' => 1.3, 'lh-desktop-unit' => '' ), 'h3_typo' => array ( 'font-family' => "Montserrat", 'font-fallback' => '"Montserrat", sans-serif', 'font-weight' => 700, 'fs-desktop' => 34, 'fs-desktop-unit' => 'px', 'lh-desktop' => 1.3, 'lh-desktop-unit' => '' ), 'h4_typo' => array ( 'font-family' => "Montserrat", 'font-fallback' => '"Montserrat", sans-serif', 'font-weight' => 700, 'fs-desktop' => 28, 'fs-desktop-unit' => 'px', 'lh-desktop' => 1.3, 'lh-desktop-unit' => '' ), 'h5_typo' => array ( 'font-family' => "Montserrat", 'font-fallback' => '"Montserrat", sans-serif', 'font-weight' => 700, 'fs-desktop' => 24, 'fs-desktop-unit' => 'px', 'lh-desktop' => 1.3, 'lh-desktop-unit' => '' ), 'h6_typo' => array ( 'font-family' => "Montserrat", 'font-fallback' => '"Montserrat", sans-serif', 'font-weight' => 700, 'fs-desktop' => 22, 'fs-desktop-unit' => 'px', 'lh-desktop' => 1.3, 'lh-desktop-unit' => '' ), 'extra_typo' => array ( 'font-family' => "Dancing Script", 'font-fallback' => '"Dancing Script", sans-serif', 'font-weight' => 500, 'fs-desktop' => 16, 'fs-desktop-unit' => 'px', 'lh-desktop' => 1.1, 'lh-desktop-unit' => '' ), ); return $defaults; } }