Option: theme

This option enables you to specify what theme to use when rendering the TinyMCE WYSIWYG editor instances. This name matches the directories located in "tinymce/jscripts/tiny_mce/themes". The default value of this option is "default". TinyMCE has three build in themes and these are described in greater detail below.

default

This is the default theme of TinyMCE if no theme option is specified this one will be used for rendering TinyMCE editor instances. This theme contains some of the most common functions.

advanced

This is the advanced theme of TinyMCE, this theme enables users to add/remove buttons and panels and is a lot more flexible than the simple or default theme. For more information about this themes specific options check the "Advanced theme" configuration section.

simple

This is the most simple theme for TinyMCE it contains only the basic functions.

Example of usage of the theme option:

tinyMCE.init({
	...
	theme : "advanced",
	theme_advanced_buttons3_add_before : "tablecontrols,separator"
});