'f7f3ee', 'border' => 'e9e0d1', 'text' => '333333', 'link' => '5e191a', 'url' => 'dac490', ); } function quintus_wpcom_setup() { add_theme_support( 'print-style' ); } add_action( 'after_setup_theme', 'quintus_wpcom_setup' ); /** * Dequeue font styles. * * We don't want to enqueue the font scripts if the blog * has WP.com Custom Design and is using a 'Headings' font. */ function quintus_dequeue_fonts() { if ( class_exists( 'TypekitData' ) && class_exists( 'CustomDesign' ) && CustomDesign::is_upgrade_active() ) { $customfonts = TypekitData::get( 'families' ); if ( $customfonts['headings']['id'] ) wp_dequeue_style( 'lato' ); } } add_action( 'wp_enqueue_scripts', 'quintus_dequeue_fonts' );