'edf6fe', 'border' => '5175b3', 'text' => '333333', 'link' => '123b66', 'url' => '123b66', ); break; case 'tiger-lily': $themecolors = array( 'bg' => 'f9e4d8', 'border' => 'f9cdb5', 'text' => '333333', 'link' => 'ca4d11', 'url' => 'ca4d11', ); break; default: $themecolors = array( 'bg' => 'ffebf2', 'border' => 'e7d9b9', 'text' => '333333', 'link' => 'bb5974', 'url' => 'bb5974', ); } } add_action( 'after_setup_theme', 'bouquet_wpcom_setup' ); /** * Dequeue font styles when Typekit is active. * * We don't want to enqueue the font scripts if the blog * has WP.com Custom Design and is using a 'Headings' font. */ function bouquet_dequeue_fonts() { if ( class_exists( 'TypekitData' ) && class_exists( 'CustomDesign' ) && CustomDesign::is_upgrade_active() ) { $customfonts = TypekitData::get( 'families' ); if ( $customfonts && $customfonts['headings']['id'] ) wp_dequeue_style( 'sorts mill goudy' ); } } add_action( 'wp_enqueue_scripts', 'bouquet_dequeue_fonts' ); /** * Enqueue our WP.com styles for front-end. * Loads after style.css so we can add overrides. */ function bouquet_wpcom_scripts() { wp_enqueue_style( 'bouquet-wpcom-style', get_template_directory_uri() . '/inc/style-wpcom.css', array( 'bouquet' ), '20150527' ); } add_action( 'wp_enqueue_scripts', 'bouquet_wpcom_scripts' );