get( 'Version' ); $version_string = is_string( $theme_version ) ? $theme_version : false; wp_register_style( 'allele-style', get_template_directory_uri() . '/style.css', array(), $version_string ); // Add styles inline. wp_add_inline_style( 'allele-style', allele_get_font_face_styles() ); // Enqueue theme stylesheet. wp_enqueue_style( 'allele-style' ); wp_enqueue_style( 'allele-theme-style', get_template_directory_uri() . '/build/theme-style.css', array( 'allele-style' ), $version_string ); } endif; add_action( 'wp_enqueue_scripts', 'allele_styles' ); if ( ! function_exists( 'allele_editor_styles' ) ) : /** * Enqueue editor styles. * * @since Allele 1.0.0 * * @return void */ function allele_editor_styles() { // Add styles inline. wp_add_inline_style( 'wp-block-library', allele_get_font_face_styles() ); } endif; add_action( 'admin_init', 'allele_editor_styles' ); if ( ! function_exists( 'allele_get_font_face_styles' ) ) : /** * Get font face styles. * Called by functions allele_styles() and allele_editor_styles() above. * * @since Allele 1.0.0 * * @return string */ function allele_get_font_face_styles() { return " @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/open-sans/open-sans-v27-latin-regular.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/open-sans/open-sans-v27-latin-regular.woff' ) . "') format('woff'); } @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/open-sans/open-sans-v27-latin-700.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/open-sans/open-sans-v27-latin-700.woff' ) . "') format('woff'); } @font-face { font-family: 'Open Sans'; font-style: italic; font-weight: 400; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/open-sans/open-sans-v27-latin-italic.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/open-sans/open-sans-v27-latin-italic.woff' ) . "') format('woff'); } @font-face { font-family: 'Open Sans'; font-style: italic; font-weight: 700; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/open-sans/open-sans-v27-latin-700italic.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/open-sans/open-sans-v27-latin-700italic.woff' ) . "') format('woff'); } @font-face { font-family: 'Raleway'; font-style: normal; font-weight: 100; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-100.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-100.woff' ) . "') format('woff'); } @font-face { font-family: 'Raleway'; font-style: normal; font-weight: 200; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-200.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-200.woff' ) . "') format('woff'); } @font-face { font-family: 'Raleway'; font-style: normal; font-weight: 300; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-300.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-300.woff' ) . "') format('woff'); } @font-face { font-family: 'Raleway'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-regular.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-regular.woff' ) . "') format('woff'); } @font-face { font-family: 'Raleway'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-700.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-700.woff' ) . "') format('woff'); } @font-face { font-family: 'Raleway'; font-style: italic; font-weight: 100; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-100italic.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-100italic.woff' ) . "') format('woff'); } @font-face { font-family: 'Raleway'; font-style: italic; font-weight: 200; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-200italic.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-200italic.woff' ) . "') format('woff'); } @font-face { font-family: 'Raleway'; font-style: italic; font-weight: 300; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-300italic.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-300italic.woff' ) . "') format('woff'); } @font-face { font-family: 'Raleway'; font-style: italic; font-weight: 400; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-italic.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-italic.woff' ) . "') format('woff'); } @font-face { font-family: 'Raleway'; font-style: italic; font-weight: 700; font-stretch: 100%; font-display: swap; src: url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-700italic.woff2' ) . "') format('woff2'), url('" . get_theme_file_uri( 'fonts/raleway/raleway-v22-latin-700italic.woff' ) . "') format('woff'); } "; } endif; if ( ! function_exists( 'allele_preload_webfonts' ) ) : /** * Preloads the main web font to improve performance. * * @since Allele 1.0.0 * * @return void */ function allele_preload_webfonts() { ?>