I'm using the standard WP Custom Backgrounds feature, however, the color is defaulting to #166b4c and I'm unsure why. #166b4c does not appear in my stylesheet. Below is my code.
add_theme_support( 'custom-background' );
$defaults = array(
'default-color' => '000',
'default-image' => '',
'wp-head-callback' => '_custom_background_cb',
'admin-head-callback' => '',
'admin-preview-callback' => ''
);
add_theme_support( 'custom-background', $defaults);
Live example: http://themeforward.com/demo2/
body.custom-backgroundare being inserted. Any idea why that is? View source to see what I mean. – s_ha_dum Feb 13 at 16:39