In your template there is one line that says: page_content();
Replace that with something like:
<?php
ob_start();
page_content();
$content = ob_get_contents();
ob_end_clean();
// do your replacing here like: $content = str_replace ("black", "white", $content );
echo $content;
Ruud