daniel-w
1/30/2015 - 9:23 PM

Add custom css to Wordpress admin.

Add custom css to Wordpress admin.

/**
 * Add custom css to the WordPress admin dashboard
 **/
function custom_colors() {
   echo '<style type="text/css">
           #wphead{background:#592222}
           #footer{background:#592222}
           #footer-upgrade{background:#592222}
         </style>';
}

add_action('admin_head', 'custom_colors');