Open the following file with your favorite editor:
clientscript/ckeditor/skins/kama/mainui.css
Look around line 27 for the following code
Code:
.cke_skin_kama .cke_wrapper
{
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
background-color: #d3d3d3;
background-image: url(images/sprites.png);
background-repeat: repeat-x;
background-position: 0 -1950px;
display: block;
/* IE Quirks: editor chrome overflow horizontally without an explicit width. */
_display: inline-block;
padding: 5px;
/*background-color: Red;*/
}
edit it accordingly. The variable you will need to edit is
Code:
background-color: #d3d3d3;
Replace the #d3d3d3 with whatever color you'd like, save the file and re-upload/overwrite.
---------------------------------------------------------------------------------
A simpler way to implement a change to the color without editing any files would be to add the following to additional.css template editing the color you want.
Code:
/* Background Color for CKEditor */
.cke_skin_kama .cke_wrapper {
background-color:#666666!important;
}
/* Background Color for CKEditor - END */