File: /home/vitaminic.co.uk/public_html/wp-content/themes/ascendoor-blog/inc/dynamic-css.php
<?php
/**
* Dynamic CSS
*/
function ascendoor_blog_dynamic_css() {
$site_title_font = get_theme_mod( 'ascendoor_blog_site_title_font', 'KoHo' );
$site_description_font = get_theme_mod( 'ascendoor_blog_site_description_font', 'Comfortaa' );
$header_font = get_theme_mod( 'ascendoor_blog_header_font', 'Poppins' );
$body_font = get_theme_mod( 'ascendoor_blog_body_font', 'Inter' );
$custom_css = '';
$custom_css .= '
/* Color */
:root {
--header-text-color: ' . esc_attr( '#' . get_header_textcolor() ) . ';
}
';
$custom_css .= '
/* Typograhpy */
:root {
--font-heading: "' . esc_attr( $header_font ) . '", serif;
--font-main: -apple-system, BlinkMacSystemFont,"' . esc_attr( $body_font ) . '", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
body,
button, input, select, optgroup, textarea {
font-family: "' . esc_attr( $body_font ) . '", serif;
}
.site-title a {
font-family: "' . esc_attr( $site_title_font ) . '", serif;
}
.site-description {
font-family: "' . esc_attr( $site_description_font ) . '", serif;
}
';
wp_add_inline_style( 'ascendoor-blog-style', $custom_css );
}
add_action( 'wp_enqueue_scripts', 'ascendoor_blog_dynamic_css', 99 );