[Table of Contents] [docx version]
Error! No text of specified style in document.
extraClrScheme (Extra Color Scheme)
This element defines an auxiliary color scheme, which includes both a color scheme and color mapping. This is mainly used for backward compatibility concerns and roundtrips information required by earlier versions.
[Example: Consider the following example of an extra color scheme in use in DrawingML:
<extraClrScheme>
<clrScheme name="extraColorSchemeSample">
<dk1>
<sysClr val="windowText"/>
</dk1>
<lt1>
<sysClr val="window"/>
</lt1>
<dk2>
<srgbClr val="04617B"/>
</dk2>
<lt2>
<srgbClr val="DBF5F9"/>
</lt2>
<accent1>
<srgbClr val="0F6FC6"/>
</accent1>
<accent2>
<srgbClr val="009DD9"/>
</accent2>
<accent3>
<srgbClr val="0BD0D9"/>
</accent3>
<accent4>
<srgbClr val="10CF9B"/>
</accent4>
<accent5>
<srgbClr val="7CCA62"/>
</accent5>
<accent6>
<srgbClr val="A5C249"/>
</accent6>
<hlink>
<srgbClr val="FF9800"/>
</hlink>
<folHlink>
<srgbClr val="F45511"/>
</folHlink>
</clrScheme>
<clrMap bg1="lt1" tx1="dk1" bg2="lt2" tx2="dk2" accent1="accent1"
accent2="accent2" accent3="accent3" accent4="accent4" accent5="accent5"
accent6="accent6" hlink="hlink" folHlink="folHlink"/>
</extraClrScheme>
In this example, the extra color scheme contains a color scheme and a color map for that color scheme. end example]
Parent Elements |
extraClrSchemeLst (§5.1.8.5) |
Child Elements |
Subclause |
clrMap (Color Map) |
§5.1.8.1 |
clrScheme (Color Scheme) |
§5.1.8.2 |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_ColorSchemeAndMapping">
<sequence>
<element name="clrScheme" type="CT_ColorScheme" minOccurs="1" maxOccurs="1"/>
<element name="clrMap" type="CT_ColorMapping" minOccurs="0" maxOccurs="1"/>
</sequence>
</complexType>