HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux srvntsweb01 6.8.0-55-generic #57-Ubuntu SMP PREEMPT_DYNAMIC Wed Feb 12 23:42:21 UTC 2025 x86_64
User: admntserv (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/credoplanning.com/wp-content/themes/itfirm/inc/theme-config.php
<?php
// make some configs
if(!function_exists('itfirm_configs')){
    function itfirm_configs($value){

        $t_primary_color = itfirm_get_opt('primary_color', '#0f67f6');
        $p_primary_color = itfirm_get_page_opt('p_primary_color');
        if(!empty($p_primary_color)) {
           $t_primary_color = $p_primary_color;
        }

        $t_secondary_color = itfirm_get_opt('secondary_color', '#191919');
        $p_secondary_color = itfirm_get_page_opt('p_secondary_color');
        if(!empty($p_secondary_color)) {
           $t_secondary_color = $p_secondary_color;
        }

        $t_third_color = itfirm_get_opt('third_color', '#08d9ff');

        $t_gradient_color_from = itfirm_get_opt('gradient_color', ['from' => '#006cff']);
        $p_gradient_color = itfirm_get_page_opt('p_gradient_color');
        if(!empty($p_gradient_color['from'])) {
           $t_gradient_color_from['from'] = $p_gradient_color['from'];
        }

        $t_gradient_color_to = itfirm_get_opt('gradient_color', ['to' => '#1227b8']);
        if(!empty($p_gradient_color['to'])) {
           $t_gradient_color_to['to'] = $p_gradient_color['to'];
        }
         
        $configs = [
            'theme_colors' => [
                'primary'   => [
                    'title' => esc_html__('Primary', 'itfirm').' ('.itfirm_get_opt('primary_color', '#0f67f6').')', 
                    'value' => $t_primary_color
                ],
                'secondary'   => [
                    'title' => esc_html__('Secondary', 'itfirm').' ('.itfirm_get_opt('secondary_color', '#191919').')', 
                    'value' => $t_secondary_color
                ],
                'third'   => [
                    'title' => esc_html__('Third', 'itfirm').' ('.itfirm_get_opt('third_color', '#08d9ff').')', 
                    'value' => $t_third_color
                ]
            ],
            'link' => [
                'color' => itfirm_get_opt('link_color', ['regular' => '#0f67f6'])['regular'],
                'color-hover'   => itfirm_get_opt('link_color', ['hover' => '#1227b8'])['hover'],
                'color-active'  => itfirm_get_opt('link_color', ['active' => '#1227b8'])['active'],
            ],
            'gradient' => [
                'color-from' => $t_gradient_color_from['from'],
                'color-to' => $t_gradient_color_to['to'],
            ],
               
        ];
        return $configs[$value];
    }
}
if(!function_exists('itfirm_inline_styles')) {
    function itfirm_inline_styles() {  
        
        $theme_colors      = itfirm_configs('theme_colors');
        $link_color        = itfirm_configs('link');
        $gradient_color        = itfirm_configs('gradient');
        ob_start();
        echo ':root{';
            
            foreach ($theme_colors as $color => $value) {
                printf('--%1$s-color: %2$s;', str_replace('#', '',$color),  $value['value']);
            }
            foreach ($theme_colors as $color => $value) {
                printf('--%1$s-color-rgb: %2$s;', str_replace('#', '',$color),  itfirm_hex_rgb($value['value']));
            }
            foreach ($link_color as $color => $value) {
                printf('--link-%1$s: %2$s;', $color, $value);
            } 
            foreach ($gradient_color as $color => $value) {
                printf('--gradient-%1$s: %2$s;', $color, $value);
            }
            foreach ($gradient_color as $color => $value) {
                printf('--gradient-%1$s-rgb: %2$s;', $color, itfirm_hex_rgb($value));
            }
        echo '}';

        return ob_get_clean();
         
    }
}