I am using CKEditor
with Angular2
to edit / modify a parameter that I have saved in the database. Everything works correctly, except that when I load the base text in CKEditor
, I do not see it because it comes with the default white letter.
How can I set the CKEditor
to automatically make the text color black?
This is the configuration I have:
In the HTML:
<ckeditor
[(ngModel)]="ckeditor_Notif_Register"
[config]="{uiColor: '#F0F3F4',
extraPlugins: 'divarea'}"
debounce="500">
</ckeditor>