File: /mnt/data/smarthr-co-in/wp-content/themes/dreamslanding/inc/typo.php
<?php
/**
* @Set Post Views
* @return {}
*/
if (!function_exists('dreamstour_add_dynamic_styles')) {
function dreamstour_add_dynamic_styles() {
global $dreamstour_theme_options;
ob_start();
?>
<?php
$theme_primary_color = !empty( $dreamstour_theme_options['primary_color'] ) ? $dreamstour_theme_options['primary_color'] : '';
?>
<?php
if (!empty($theme_primary_color)) {
?>
:root {--dreamstour_primary_color:<?php echo esc_html( $theme_primary_color );?>;}
<?php }
return ob_get_clean();
}
}