<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.

example:
<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

<extraClrScheme>5.1.8.4); <themeElements>5.1.8.10); <themeOverride>5.1.8.12)

Child Elements

Subclause

<accent1> (Accent 1)

§5.1.4.1.1

<accent2> (Accent 2)

§5.1.4.1.2

<accent3> (Accent 3)

§5.1.4.1.3

<accent4> (Accent 4)

§5.1.4.1.4

<accent5> (Accent 5)

§5.1.4.1.5

<accent6> (Accent 6)

§5.1.4.1.6

<dk1> (Dark 1)

§5.1.4.1.9

<dk2> (Dark 2)

§5.1.4.1.10

<extLst> (Extension List)

§5.1.2.1.15

<folHlink> (Followed Hyperlink)

§5.1.4.1.15

<hlink> (Hyperlink)

§5.1.4.1.19

<lt1> (Light 1)

§5.1.4.1.22

<lt2> (Light 2)

§5.1.4.1.23

Attributes

Description

<name> (Name)

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>