'a8a8a8', 'border' => '191819', 'text' => '555555', 'link' => 'c52020', 'url' => 'c52020', ); break; case 'green': $themecolors = array( 'bg' => 'd9e3d7', 'border' => '979e96', 'text' => '555555', 'link' => '0C3204', 'url' => '0C3204', ); break; case 'blue': $themecolors = array( 'bg' => '9c9fa5', 'border' => '191819', 'text' => '555555', 'link' => '2d4567', 'url' => '2d4567', ); break; default: $themecolors = array( 'bg' => 'efefef', 'border' => 'a7a7a7', 'text' => '555555', 'link' => '000000', 'url' => '000000', ); break; } } } add_action( 'after_setup_theme', 'skeptical_theme_colors' ); /** * Adds support for WP.com print styles */ function skeptical_print_styles() { add_theme_support( 'print-style' ); } add_action( 'after_setup_theme', 'skeptical_print_styles' ); //WordPress.com specific styles function skeptical_wpcom_styles() { wp_enqueue_style( 'skeptical-wpcom', get_template_directory_uri() . '/inc/style-wpcom.css', '073113' ); } add_action( 'wp_enqueue_scripts', 'skeptical_wpcom_styles' );