Extending : Widget extension : Advanced topics : CSS support for XUI Editor extension
  
CSS support for XUI Editor extension
XUI editor provides CSS support for XUI Editor. To see more details, you can refer to CSS support for XUI Editor.
Technical developers can extend new CSS themes to XUI editor. There is an extension point to handle this:
Identifier
com.ibm.btt.tools.xui.editor2.theme
Since
BTT8.0
Description
The extension point to define default CSS theme for XUI editor.
Configuration Markup
<!ELEMENT extension (theme)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>

<!ELEMENT theme EMPTY>
<!ATTLIST theme
name CDATA #REQUIRED
description CDATA #REQUIRED
css CDATA #REQUIRED>
name: the name of this theme.
description: the description of the theme.
css: the css file for this theme.
Example
<extension
    point="com.ibm.btt.tools.xui.editor2.theme">
  <theme
      css="configure/claro.css"
      description="Default CSS style for dojo claro theme"
      name="Claro">
  </theme>
</extension>
Go up to
Advanced topics