Change WordPress dashboard colors

Change WordPress dashboard colors

If you ever wanted to be able to change WordPress dashboard colors (as well as font or even display) without having to edit WordPress core files, you’ll like this hack for sure.

The following example features a basic style change (grey header is replaced by a blue one) but you can easily add as many styles as you wish within the

tags.

function custom_colors() {

echo ‘

‘;

}

add_action(‘admin_head’, ‘custom_colors’);