hi yuba30,
Please refer to adam's topic http://cutesoft.net/forums/thread/13520.aspx, it explain to your why the color format be changed.
Also, you can use the html filter to replace it back. Add the code to the bottom of your editor page.
<script type="text/javascript">
function CuteEditor_FilterHTML(editor,code)
{
return code.split("#000000").join("rgb(0,0,0)");
}
function CuteEditor_FilterCode(editor,code)
{
return code.split("#000000").join("rgb(0,0,0)");
}
</script>
Regards,
Ken