https://i.sstatic.net/yEM3p.png
Is there a way to change the default text color of CKEditor from #333333 to #000000?
I have attempted to modify the contents.css in the plugin folder:
body
{
/* Font */
font-family: sans-serif, Arial, Verdana, "Trebuchet MS";
font-size: 12px;
/* Text color */
color: #333;
/* Remove the background color to make it transparent */
background-color: #fff;
margin: 20px;
}
I changed the color from #333 to #000000 but unfortunately, it did not have any effect. Thank you.