You appear to be a bot. Output may be restricted
Description
Enqueue supplemental block editor styles.
Usage
twentynineteen_editor_customizer_styles();
Parameters
Returns
void
Source
File name: twentynineteen/functions.php
Lines:
1 to 10 of 10
function twentynineteen_editor_customizer_styles() { wp_enqueue_style( 'twentynineteen-editor-customizer-styles', get_theme_file_uri( '/style-editor-customizer.css' ), false, '1.1', 'all' ); if ( 'custom' === get_theme_mod( 'primary_color' ) ) { // Include color patterns. require_once get_parent_theme_file_path( '/inc/color-patterns.php' ); wp_add_inline_style( 'twentynineteen-editor-customizer-styles', twentynineteen_custom_colors_css() ); } }