<clrScheme>
(Color Scheme)
This element defines a set of colors which are referred to as a color scheme. The color scheme is responsible for defining a list of twelve colors. The twelve colors consist of six accent colors, two dark colors, two light colors and a color for each of a hyperlink and followed hyperlink.
<clrScheme name="sample"> <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>
In this example, are defined the 12 theme colors in the sample color scheme. ]
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Attributes |
Description |
---|---|
|
The common name for this color scheme. This name can show up in the user interface in a list of color schemes. The possible values for this attribute are defined by the XML Schema string datatype. |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_ColorScheme">
<sequence>
<element name="dk1" type="CT_Color" minOccurs="1" maxOccurs="1"/>
<element name="lt1" type="CT_Color" minOccurs="1" maxOccurs="1"/>
<element name="dk2" type="CT_Color" minOccurs="1" maxOccurs="1"/>
<element name="lt2" type="CT_Color" minOccurs="1" maxOccurs="1"/>
<element name="accent1" type="CT_Color" minOccurs="1" maxOccurs="1"/>
<element name="accent2" type="CT_Color" minOccurs="1" maxOccurs="1"/>
<element name="accent3" type="CT_Color" minOccurs="1" maxOccurs="1"/>
<element name="accent4" type="CT_Color" minOccurs="1" maxOccurs="1"/>
<element name="accent5" type="CT_Color" minOccurs="1" maxOccurs="1"/>
<element name="accent6" type="CT_Color" minOccurs="1" maxOccurs="1"/>
<element name="hlink" type="CT_Color" minOccurs="1" maxOccurs="1"/>
<element name="folHlink" type="CT_Color" minOccurs="1" maxOccurs="1"/>
<element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
</sequence>
<attribute name="name" type="xsd:string" use="required"/>
</complexType>