Color Admin Posts is a new plugin that changes the background colors of the post/page listing within the admin based on its current status, ie. Draft, Pending, Published, Future, Private.

The really cool thing about this plugin is that it gives you an easy-to-use color picker so that you can assign your own colors to each status.

Stay organized in your dashboard with the Color Admin Posts plugin, available for free from the WordPress repository.
Featured Plugin - WordPress Google Maps Plugin
Simply insert google maps into posts, sidebars and pages - show directions, streetview, provide image overlays and do it all from a simple button and comprehensive widget.
Find out more
Featured Plugin - WordPress Wiki Plugin
To get a wiki up and running you used to need to install Mediawiki and toil away for days configuring it... not any more! This plugin gives you *all* the functionality you want from a wiki, in WordPress!!!
Find out more
Featured Plugin - WordPress Facebook Plugin
Would you like to add Facebook comments, registration, 'Like' buttons and autoposting to your WP site? Well, The Ultimate Facebook plugin has got that all covered!
Find out more
Featured Plugin - WordPress Infinite SEO Plugin
Fully integrated with the SEOMoz API, complete with automatic links, sitemaps and SEO optimization of your WordPress setup - this is the only plugin you need to help you rank your site number 1 on Google - nothing else compares.
Find out more
Featured Plugin - WordPress Q&A Site Plugin
It's now incredibly easy to start your own Q&A site using nothing more than WordPress - The Q&A plugin simply and brilliantly transforms any site, or page, into a perfect support or Q&A environment.
Find out more
Featured Plugin - WordPress Pop-Up Chat Plugin
No javascript required, no third part chat engine, just fully featured chat right in your own database on your own WP sites - couldn't be easier.
Find out more
Featured Plugin - WordPress Newsletter Plugin
Now there's no need to pay for a third party service to sign up, manage and send beautiful email newsletters to your subscriber base - this plugin has got the lot.
Find out more
Featured Plugin - WordPress Membership Site Plugin
If you're thinking about starting a paid, or just private, membership site then this is truly the plugin you've been looking for. Easy to use, massively configurable and ready to go out of the box!
Find out more
Featured Plugin - WordPress Appointments Plugin
Take, set and manage appointments and client bookings without having to leave WordPress. Appointments+ makes it easy.
Find out more
Very cool plugin Sara. For those wanting to accomplish this same thing without a plugin, place the following in the functions.php file of your theme and just changes the color values to your liking. :) via: http://wp-snippets.com/
// Custom post highlighting based on post status //
function color_code_post_status(){
?>
.status-draft{background: #FFFF99 !important;}
.status-future{background: #CCFF99 !important;}
.status-publish{/* no background – keep alternating rows */}
.status-pending{background: #87C5D6 !important;}
.status-private{background:#FFCC99;}
<?php
}
add_action('admin_footer','color_code_post_status');
That snippet didn’t work as expected for me, but changing it to admin_head and adding tags, it works. Like here:
/* Custom post highlighting based on post status */function color_code_post_status(){
?>
.status-draft{background: #FFFF99 !important;}
.status-future{background: #CCFF99 !important;}
.status-publish{/* no background – keep alternating rows */}
.status-pending{background: #87C5D6 !important;}
.status-private{background:#FFCC99;}
<?php
}
add_action('admin_head','color_code_post_status');
LOL, the style-tags are eaten from the comment, so you probably posted a working snippet, which went broke after some censorship ^_^
This plugin has a serious bug in it. My wp-admin directory is password protected via .htaccess, so apache handles user verification. With color-admin-posts activated, my entire site appears password protected.
I haven’t experienced that issue. Might be due to your specific set up, as most users don’t have the wp-admin directory password-protected.
It looks like the plugin is adding its style definitions to the main style sheet via a javascript call. And that isn’t needed when the user isn’t inside the wp-admin area of their site. Yes, my site setup made this bug visible, and it is a bug. It could the same technique that hello.php (Hello Dolly) does to display css code only on the admin pages.
See the new version of the plugin ;)
This plugin consumes 370 Kb of your memory allocated to php.
Do you really need it? use that snippet from a comment above – it’s a better solution.