I want to be able to offer multiple "themes" in the project I am working on. I can dynamcally swap css files to change the style of the text I am working with, but can is there a way to dynamically change styleSet properties. For example, if I have:
CKEDITOR.stylesSet.add( 'p_2', [
{ name: 'Teal Header' , element: 'h1', attributes: { 'class': 'ckHeader1' } },
]);
When I change the css stylesheet, the h1 or header is no longer teal. So can I dynamically change the name of it, or remove it and reconfigure it... etc? Thanks!