Change TinyMCE background colour in drupal from grey to white

Found that by default the background colour for tinymce textareas was grey with my newest drupal 5 installation. Found this node which shows which style to add to your stylesheet to change the background colour to white.

Add the following to your theme's style.css:

body.mceContentBody {
background: #fff;
color: #000;
}