Skip to content

Instantly share code, notes, and snippets.

@raphaelchaib
Created December 11, 2013 06:19
Show Gist options
  • Select an option

  • Save raphaelchaib/7905841 to your computer and use it in GitHub Desktop.

Select an option

Save raphaelchaib/7905841 to your computer and use it in GitHub Desktop.
WordPress: 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 s…
<?php
// Change wp-admin colors
add_action('admin_head', 'custom_colors');
function custom_colors() {
echo '<style type="text/css">#wphead{background:#069}</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment