Extending : CSS Support for XUI Editor Extension : Extending CSS Themes
  
Extending CSS Themes
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
CSS Support for XUI Editor Extension