You can hack the ckeditor but you won't get out the colors you put in because web browsers convert whatever you put in to the closest "web safe" color.
The best way to do it is to use HTML markup.
You can surround any post element with HTML and get the color you want.
<span style="color:#FF0000">Text</span>
Obviously, you need the exact hex values for each color for this to work as desired.
|