Color Transform

The complex type CT_ColorTransform brings together all of the pieces into one cohesive structure. This is the actual definition of a color transform, which can be applied to any diagram; it is defined as follows:

<xsd:complexType name="CT_ColorTransform">
  <xsd:sequence>
    <xsd:element name="title" type="CT_CTName" minOccurs="0" 
      maxOccurs="unbounded" />
    <xsd:element name="desc" type="CT_CTDescription" 
      minOccurs="0" maxOccurs="unbounded" />
    <xsd:element name="catLst" type="CT_CTCategories" 
      minOccurs="0" />
    <xsd:element name="styleLbl type="CT_CTStyleLabel" 
      minOccurs="0" maxOccurs="unbounded" odoc />
  </xsd:sequence>
  <xsd:attribute name="uniqueId" type="xsd:anyURI" use="optional"/>
  <xsd:attribute name="minVer" type="ST_CTVersion" use="optional" 
    default="12.0" />
</xsd:complexType>

A color transform contains a title, description, category list, and style label in a sequence along with a unique id and a minimum version.