'ffffff', 'border' => 'ffffff', 'text' => '656565', 'link' => '1abc9c', 'url' => '1abc9c', ); } // Add print stylesheet. add_theme_support( 'print-style' ); } add_action( 'after_setup_theme', 'writr_add_wpcom_support' ); /** * Enqueue wp.com-specific styles */ function writr_wpcom_styles() { wp_enqueue_style( 'writr-wpcom', get_template_directory_uri() . '/inc/style-wpcom.css', '20131011' ); } add_action( 'wp_enqueue_scripts', 'writr_wpcom_styles' ); /** * Since wp.com uses its own Custom Color functionality, * we're going to remove the colour scheme control. * This way, .org and self-hosted users will still * be able to set a colour scheme. */ function writr_wpcom_remove_color_scheme() { global $wp_customize; $wp_customize->remove_control( 'writr_color_scheme' ); } add_action( 'customize_register', 'writr_wpcom_remove_color_scheme', 20 );