20.1.6.10 themeElements
This element defines the theme formatting options for the theme and is the workhorse of the theme. This is where the bulk of the shared theme information is contained and used by a document. This element contains the color scheme, font scheme, and format scheme elements which define the different formatting aspects of what a theme defines.
[Example: Consider the following example of a theme elements defined in DrawingML:
<themeElements>
<clrScheme name="sample">
…
</clrScheme>
<fontScheme name="sample">
…
</fontScheme>
<fmtScheme name="sample">
<fillStyleLst>
…
</fillStyleLst>
<lnStyleLst>
…
</lnStyleLst>
<effectStyleLst>
…
</effectStyleLst>
<bgFillStyleLst>
…
</bgFillStyleLst>
</fmtScheme>
</themeElements>
In this example, we see the basic structure of how a theme elements is defined and have left out the true guts of each individual piece to save room. Each part (color scheme, font scheme, format scheme) is defined elsewhere within DrawingML. end example]
[Note: The W3C XML Schema definition of this element’s content model (CT_BaseStyles) is located in A.4.1. end note]