change background color js tinymce
tinyMCE.init(
mode : "textareas",
theme : "simple",
oninit : "postInitWork"
});
function postInitWork()
{
var editor = tinymce.get('myEditorid');
editor.getBody().style.backgroundColor = "#FFFF66";
}