[Table of Contents] [docx version]

Error! No text of specified style in document.

Colors

Given its own section within DrawingML Basics, colors are an integral part of the DrawingML framework. Colors are used in virtually every object to help describe it's appearance when it is rendered on the screen. Since not every generating application wishes to represent color in the same manner, it is possible to specify color in a number of different ways.

alpha (Alpha)

This element specifies its input color with the specific opacity, but with its color unchanged.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the opacity as expressed by a percentage value.

 

[Example: The following represents a green solid fill which is 50% opaque

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:alpha val="50000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_PositiveFixedPercentage simple type (§5.1.12.45).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_PositiveFixedPercentage">

   <attribute name="val" type="ST_PositiveFixedPercentage" use="required"/>

</complexType>

alphaMod (Alpha Modulation)

This element specifies a more or less opaque version of its input color. An alpha modulate never increases the alpha beyond 100%. A 200% alpha modulate makes a input color twice as opaque as before. A 50% alpha modulate makes a input color half as opaque as before.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the opacity as expressed by a percentage relative to the input color.

 

[Example: The following represents a green solid fill which is 50% opaque

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:alphaMod val="50000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_PositivePercentage simple type (§5.1.12.46).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_PositivePercentage">

   <attribute name="val" type="ST_PositivePercentage" use="required"/>

</complexType>

alphaOff (Alpha Offset)

This element specifies a more or less opaque version of its input color. Increases or decreases the input alpha percentage by the specified percentage offset. A 10% alpha offset increases a 50% opacity to 60%. A -10% alpha offset decreases a 50% opacity to 40%. The transformed alpha values are limited to a range of 0 to 100%. A 10% alpha offset increase to a 100% opaque object still results in 100% opacity.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the opacity as expressed by a percentage offset increase or decrease relative to the input color. Increases will never increase the opacity beyond 100%, decreases will never decrease the opacity below 0%.

 

[Example: The following represents a green solid fill which is 90% opaque

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:alphaOff val="-10000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_FixedPercentage simple type (§5.1.12.22).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_FixedPercentage">

   <attribute name="val" type="ST_FixedPercentage" use="required"/>

</complexType>

blue (Blue)

This element specifies the input color with the specific blue component, but with the red and green color components unchanged.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

blueMod (Blue Modification)

This element specifies the input color with its blue component modulated by the given percentage. A 50% blue modulate will reduce the blue component by half. A 200% blue modulate will double the blue component.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

blueOff (Blue Offset)

This element specifies the input color with its blue component shifted, but with its red and green color components unchanged.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

comp (Complement)

This element specifies that the color rendered should be the complement of its input color with the complement being defined as such. Two colors are called complementary if, when mixed they produce a shade of grey. For instance, the complement of red which is RGB (255, 0, 0) is cyan which is RGB (0, 255, 255).

Primary colors and secondary colors are typically paired in this way:

red and cyan (where cyan is the mixture of green and blue)

green and magenta (where magenta is the mixture of red and blue)

blue and yellow (where yellow is the mixture of red and green)

[Example:

The following represents the complement of red:

<a:solidFill>
<a:srgbClr
val="FF0000">
<a:comp/>
</a:srgbClr>
</a:solidFill>

end example]

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_ComplementTransform"/>

gamma (Gamma)

This element specifies that the output color rendered by the generating application should be the sRGB gamma shift of the input color.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_GammaTransform"/>

gray (Gray)

This element specifies a grayscale of its input color, taking into relative intensities of the red, green, and blue primaries.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_GrayscaleTransform"/>

green (Green)

This elements specifies the input color with the specified green component, but with its red and blue color components unchanged.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

greenMod (Green Modification)

This element specifies the input color with its green component modulated by the given percentage. A 50% green modulate will reduce the green component by half. A 200% green modulate will double the green component.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

greenOff (Green Offset)

This element specifies the input color with its green component shifted, but with its red and blue color components unchanged.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

hslClr (Hue, Saturation, Luminance Color Model)

This element specifies a color using the HSL color model. A perceptual gamma of 2.2 is assumed.

Hue refers to the dominant wavelength of color, saturation refers to the purity of its hue, and luminance refers to its lightness or darkness.

As with all colors, colors defined with the HSL color model may have color transforms applied to it.

[Example:

The color blue having RGB value RRGGBB = (00, 00, 80) is equivalent to

<a:solidFill>

<a:hslClr hue="14400000" sat="100000" lum="50000">

</a:solidFill>

end example]

Parent Elements

accent15.1.4.1.1); accent25.1.4.1.2); accent35.1.4.1.3); accent45.1.4.1.4); accent55.1.4.1.5); accent65.1.4.1.6); alphaInv5.1.10.4); bgClr5.1.10.10); bgRef4.4.1.3); buClr5.1.5.4.4); clrFrom5.1.10.17); clrMru4.3.1.4); clrRepl5.1.10.18); clrTo5.1.10.19); clrVal4.6.27); contourClr5.1.7.6); custClr5.1.4.1.8); dk15.1.4.1.9); dk25.1.4.1.10); duotone5.1.10.23); effectClrLst5.9.4.7); effectRef5.1.4.2.8); extrusionClr5.1.7.7); fgClr5.1.10.27); fillClrLst5.9.4.8); fillRef5.1.4.2.10); folHlink5.1.4.1.15); fontRef5.1.4.1.17); from4.6.44); glow5.1.10.32); gs5.1.10.36); highlight5.1.5.3.4); hlink5.1.4.1.19); innerShdw5.1.10.40); linClrLst5.9.4.9); lnRef5.1.4.2.19); lt15.1.4.1.22); lt25.1.4.1.23); outerShdw5.1.10.45); penClr4.3.1.21); prstShdw5.1.10.49); solidFill5.1.10.54); tcTxStyle5.1.4.2.30); to4.6.90); txEffectClrLst5.9.4.12); txFillClrLst5.9.4.13); txLinClrLst5.9.4.14)

 

Child Elements

Subclause

alpha (Alpha)

§5.1.2.2.1

alphaMod (Alpha Modulation)

§5.1.2.2.2

alphaOff (Alpha Offset)

§5.1.2.2.3

blue (Blue)

§5.1.2.2.4

blueMod (Blue Modification)

§5.1.2.2.5

blueOff (Blue Offset)

§5.1.2.2.6

comp (Complement)

§5.1.2.2.7

gamma (Gamma)

§5.1.2.2.8

gray (Gray)

§5.1.2.2.9

green (Green)

§5.1.2.2.10

greenMod (Green Modification)

§5.1.2.2.11

greenOff (Green Offset)

§5.1.2.2.12

hue (Hue)

§5.1.2.2.14

hueMod (Hue Modulate)

§5.1.2.2.15

hueOff (Hue Offset)

§5.1.2.2.16

inv (Inverse)

§5.1.2.2.17

invGamma (Inverse Gamma)

§5.1.2.2.18

lum (Luminance)

§5.1.2.2.19

lumMod (Luminance Modulation)

§5.1.2.2.20

lumOff (Luminance Offset)

§5.1.2.2.21

red (Red)

§5.1.2.2.23

redMod (Red Modulation)

§5.1.2.2.24

redOff (Red Offset)

§5.1.2.2.25

sat (Saturation)

§5.1.2.2.26

satMod (Saturation Modulation)

§5.1.2.2.27

satOff (Saturation Offset)

§5.1.2.2.28

shade (Shade)

§5.1.2.2.31

tint (Tint)

§5.1.2.2.34

 

Attributes

Description

hue (Hue)

Specifies the angular value describing the wavelength. Expressed in 1/6000ths of a degree.

 

The possible values for this attribute are defined by the ST_PositiveFixedAngle simple type (§5.1.12.44).

lum (Luminance)

Specifies the luminance referring to the lightness or darkness of the color. Expressed as a percentage with 0% referring to maximal dark (black) and 100% referring to maximal white.

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

sat (Saturation)

Specifies the saturation referring to the purity of the hue. Expressed as a percentage with 0% referring to grey, 100% referring to the purest form of the hue.

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_HslColor">

   <sequence>

   <group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/>

   </sequence>

   <attribute name="hue" type="ST_PositiveFixedAngle" use="required"/>

   <attribute name="sat" type="ST_Percentage" use="required"/>

   <attribute name="lum" type="ST_Percentage" use="required"/>

</complexType>

hue (Hue)

This element specifies the input color with the specified hue, but with its saturation and luminance unchanged.

[Example: The following two solid fills are equivalent.

<a:solidFill>
<a:hslClr hue="14400000" sat="100000"
lum="50000">
</a:solidFill>

<a:solidFill>
<a:hslClr hue="0" sat="100000" lum="50000">
<a:hue val="14400000"/>
<a:hslClr/>
</a:solidFill>

end example]

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the actual angle value to be used with the input color's hue component.

 

The possible values for this attribute are defined by the ST_PositiveFixedAngle simple type (§5.1.12.44).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_PositiveFixedAngle">

   <attribute name="val" type="ST_PositiveFixedAngle" use="required"/>

</complexType>

hueMod (Hue Modulate)

This element specifies the input color with its hue modulated by the given percentage. A 50% hue modulate decreases the angular hue value by half. A 200% hue modulate doubles the angular hue value.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the opacity as expressed by a percentage relative to the input color.

 

[Example: The following represents a green solid fill which is 50% opaque

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:alphaMod val="50000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_PositivePercentage simple type (§5.1.12.46).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_PositivePercentage">

   <attribute name="val" type="ST_PositivePercentage" use="required"/>

</complexType>

hueOff (Hue Offset)

This element specifies the input color with its hue shifted, but with its saturation and luminance unchanged.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the actual angular value of the shift. The result of the shift must be between 0 and 360 degrees. Shifts resulting in angular values less than 0 will be treated as 0. Shifts resulting in angular values greater than 360 will be treated as 360.

[Example:

The following increases the hue angular value by 10 degrees.

<a:solidFill>
<a:hslClr hue="0" sat="100000" lum="50000"/>
<a:hueOff val="600000"/>
</a:solidFill>

end example]

 

The possible values for this attribute are defined by the ST_Angle simple type (§5.1.12.3).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Angle">

   <attribute name="val" type="ST_Angle" use="required"/>

</complexType>

inv (Inverse)

This element specifies the inverse of its input color. For example, the inverse of red (1, 0, 0) is cyan (0, 1, 1 ).

[Example:

The following represents cyan, the inverse of red:

<a:solidFill>
<a:srgbClr
val="FF0000">
<a:inv/>
</a:srgbClr>
</a:solidFill>

end example]

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_InverseTransform"/>

invGamma (Inverse Gamma)

This element specifies that the output color rendered by the generating application should be the inverse sRGB gamma shift of the input color.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_InverseGammaTransform"/>

lum (Luminance)

This element specifies the input color with the specified luminance, but with its hue and saturation unchanged. Typically luminance values fall in the range [0%, 100%].

[Example:

The following two solid fills are equivalent:

<a:solidFill>
<a:hslClr hue="14400000" sat="100000" lum="50000">
</a:solidFill>

<a:solidFill>
<a:hslClr hue="14400000" sat="100000" lum="0">
<a:lum val="50000"/>
<a:hslClr/>
</a:solidFill>

end example]

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

lumMod (Luminance Modulation)

This element specifies the input color with its luminance modulated by the given percentage. A 50% luminance modulate will reduce the luminance by half. A 200% luminance modulate will double the luminance.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

lumOff (Luminance Offset)

This element specifies the input color with its luminance shifted, but with its hue and saturation unchanged.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

prstClr (Preset Color)

This element specifies a color which is bound to one of a predefined collection of colors.

[Example:

The following defines a solid fill bound to the "black" preset color.

<a:solidFill>
<a:prstClr val="black">
</a:solidFill>

end example]

Parent Elements

accent15.1.4.1.1); accent25.1.4.1.2); accent35.1.4.1.3); accent45.1.4.1.4); accent55.1.4.1.5); accent65.1.4.1.6); alphaInv5.1.10.4); bgClr5.1.10.10); bgRef4.4.1.3); buClr5.1.5.4.4); clrFrom5.1.10.17); clrMru4.3.1.4); clrRepl5.1.10.18); clrTo5.1.10.19); clrVal4.6.27); contourClr5.1.7.6); custClr5.1.4.1.8); dk15.1.4.1.9); dk25.1.4.1.10); duotone5.1.10.23); effectClrLst5.9.4.7); effectRef5.1.4.2.8); extrusionClr5.1.7.7); fgClr5.1.10.27); fillClrLst5.9.4.8); fillRef5.1.4.2.10); folHlink5.1.4.1.15); fontRef5.1.4.1.17); from4.6.44); glow5.1.10.32); gs5.1.10.36); highlight5.1.5.3.4); hlink5.1.4.1.19); innerShdw5.1.10.40); linClrLst5.9.4.9); lnRef5.1.4.2.19); lt15.1.4.1.22); lt25.1.4.1.23); outerShdw5.1.10.45); penClr4.3.1.21); prstShdw5.1.10.49); solidFill5.1.10.54); tcTxStyle5.1.4.2.30); to4.6.90); txEffectClrLst5.9.4.12); txFillClrLst5.9.4.13); txLinClrLst5.9.4.14)

 

Child Elements

Subclause

alpha (Alpha)

§5.1.2.2.1

alphaMod (Alpha Modulation)

§5.1.2.2.2

alphaOff (Alpha Offset)

§5.1.2.2.3

blue (Blue)

§5.1.2.2.4

blueMod (Blue Modification)

§5.1.2.2.5

blueOff (Blue Offset)

§5.1.2.2.6

comp (Complement)

§5.1.2.2.7

gamma (Gamma)

§5.1.2.2.8

gray (Gray)

§5.1.2.2.9

green (Green)

§5.1.2.2.10

greenMod (Green Modification)

§5.1.2.2.11

greenOff (Green Offset)

§5.1.2.2.12

hue (Hue)

§5.1.2.2.14

hueMod (Hue Modulate)

§5.1.2.2.15

hueOff (Hue Offset)

§5.1.2.2.16

inv (Inverse)

§5.1.2.2.17

invGamma (Inverse Gamma)

§5.1.2.2.18

lum (Luminance)

§5.1.2.2.19

lumMod (Luminance Modulation)

§5.1.2.2.20

lumOff (Luminance Offset)

§5.1.2.2.21

red (Red)

§5.1.2.2.23

redMod (Red Modulation)

§5.1.2.2.24

redOff (Red Offset)

§5.1.2.2.25

sat (Saturation)

§5.1.2.2.26

satMod (Saturation Modulation)

§5.1.2.2.27

satOff (Saturation Offset)

§5.1.2.2.28

shade (Shade)

§5.1.2.2.31

tint (Tint)

§5.1.2.2.34

 

Attributes

Description

val (Value)

Specifies the actual preset color value.

 

The possible values for this attribute are defined by the ST_PresetColorVal simple type (§5.1.12.48).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_PresetColor">

   <sequence>

   <group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/>

   </sequence>

   <attribute name="val" type="ST_PresetColorVal"/>

</complexType>

red (Red)

This element specifies the input color with the specified red component, but with its green and blue color components unchanged.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

redMod (Red Modulation)

This element specifies the input color with its red component modulated by the given percentage. A 50% red modulate will reduce the red component by half. A 200% red modulate will double the red component.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

redOff (Red Offset)

This element specifies the input color with its red component shifted, but with its green and blue color components unchanged.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

sat (Saturation)

This element specifies the input color with the specified saturation, but with its hue and luminance unchanged. Typically saturation values fall in the range [0%, 100%].

[Example:

The following two solid fills are equivalent:

<a:solidFill>
<a:hslClr hue="14400000" sat="100000"
lum="50000">
</a:solidFill>

<a:solidFill>
<a:hslClr hue="14400000" sat="0" lum="50000">
<a:sat val="100000"/>
<a:hslClr/>
</a:solidFill>

end example]

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

satMod (Saturation Modulation)

This element specifies the input color with its saturation modulated by the given percentage. A 50% saturation modulate will reduce the saturation by half. A 200% saturation modulate will double the saturation.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

satOff (Saturation Offset)

This element specifies the input color with its saturation shifted, but with its hue and luminance unchanged. A 10% offset to 20% saturation yields 30% saturation.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the value of the blue component. The assigned value is specified as a percentage with 0% indicating minimal blue and 100% indicating maximum blue.

 

[Example: The following manipulates the fill from having RGB value RRGGBB = (00, FF, 00) to value RRGGBB= (00, FF, FF)

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:blue val="100000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Percentage">

   <attribute name="val" type="ST_Percentage" use="required"/>

</complexType>

schemeClr (Scheme Color)

This element specifies a color bound to a user's theme. As with all elements which define a color, it is possible to apply a list of color transforms to the base color defined.

Parent Elements

accent15.1.4.1.1); accent25.1.4.1.2); accent35.1.4.1.3); accent45.1.4.1.4); accent55.1.4.1.5); accent65.1.4.1.6); alphaInv5.1.10.4); bgClr5.1.10.10); bgRef4.4.1.3); buClr5.1.5.4.4); clrFrom5.1.10.17); clrMru4.3.1.4); clrRepl5.1.10.18); clrTo5.1.10.19); clrVal4.6.27); contourClr5.1.7.6); custClr5.1.4.1.8); dk15.1.4.1.9); dk25.1.4.1.10); duotone5.1.10.23); effectClrLst5.9.4.7); effectRef5.1.4.2.8); extrusionClr5.1.7.7); fgClr5.1.10.27); fillClrLst5.9.4.8); fillRef5.1.4.2.10); folHlink5.1.4.1.15); fontRef5.1.4.1.17); from4.6.44); glow5.1.10.32); gs5.1.10.36); highlight5.1.5.3.4); hlink5.1.4.1.19); innerShdw5.1.10.40); linClrLst5.9.4.9); lnRef5.1.4.2.19); lt15.1.4.1.22); lt25.1.4.1.23); outerShdw5.1.10.45); penClr4.3.1.21); prstShdw5.1.10.49); solidFill5.1.10.54); tcTxStyle5.1.4.2.30); to4.6.90); txEffectClrLst5.9.4.12); txFillClrLst5.9.4.13); txLinClrLst5.9.4.14)

 

Child Elements

Subclause

alpha (Alpha)

§5.1.2.2.1

alphaMod (Alpha Modulation)

§5.1.2.2.2

alphaOff (Alpha Offset)

§5.1.2.2.3

blue (Blue)

§5.1.2.2.4

blueMod (Blue Modification)

§5.1.2.2.5

blueOff (Blue Offset)

§5.1.2.2.6

comp (Complement)

§5.1.2.2.7

gamma (Gamma)

§5.1.2.2.8

gray (Gray)

§5.1.2.2.9

green (Green)

§5.1.2.2.10

greenMod (Green Modification)

§5.1.2.2.11

greenOff (Green Offset)

§5.1.2.2.12

hue (Hue)

§5.1.2.2.14

hueMod (Hue Modulate)

§5.1.2.2.15

hueOff (Hue Offset)

§5.1.2.2.16

inv (Inverse)

§5.1.2.2.17

invGamma (Inverse Gamma)

§5.1.2.2.18

lum (Luminance)

§5.1.2.2.19

lumMod (Luminance Modulation)

§5.1.2.2.20

lumOff (Luminance Offset)

§5.1.2.2.21

red (Red)

§5.1.2.2.23

redMod (Red Modulation)

§5.1.2.2.24

redOff (Red Offset)

§5.1.2.2.25

sat (Saturation)

§5.1.2.2.26

satMod (Saturation Modulation)

§5.1.2.2.27

satOff (Saturation Offset)

§5.1.2.2.28

shade (Shade)

§5.1.2.2.31

tint (Tint)

§5.1.2.2.34

 

Attributes

Description

val (Value)

Specifies the desired scheme.

 

[Example: The following represents a color bound to the "lt1" theme color

 

<a:solidFill>
<a:schemeClr val="lt1"/>
</a:solidFill>

 

end example]

 

 

The possible values for this attribute are defined by the ST_SchemeColorVal simple type (§5.1.12.54).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_SchemeColor">

   <sequence>

   <group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/>

   </sequence>

   <attribute name="val" type="ST_SchemeColorVal" use="required"/>

</complexType>

scrgbClr (RGB Color Model - Percentage Variant)

This element specifies a color using the red, green, blue RGB color model. Each component, red, green, and blue is expressed as a percentage from 0% to 100%. A linear gamma of 1.0 is assumed.

Specifies the level of red as expressed by a percentage offset increase or decrease relative to the input color.

[Example: The following represent the same color

<a:solidFill>
<a:scrgbClr r="50000" g="50000" b="50000"/>
</a:solidFill>
<a:solidFill>
<a:srgbClr
val="BCBCBC"/>
</a:solidFill>

end example]

Parent Elements

accent15.1.4.1.1); accent25.1.4.1.2); accent35.1.4.1.3); accent45.1.4.1.4); accent55.1.4.1.5); accent65.1.4.1.6); alphaInv5.1.10.4); bgClr5.1.10.10); bgRef4.4.1.3); buClr5.1.5.4.4); clrFrom5.1.10.17); clrMru4.3.1.4); clrRepl5.1.10.18); clrTo5.1.10.19); clrVal4.6.27); contourClr5.1.7.6); custClr5.1.4.1.8); dk15.1.4.1.9); dk25.1.4.1.10); duotone5.1.10.23); effectClrLst5.9.4.7); effectRef5.1.4.2.8); extrusionClr5.1.7.7); fgClr5.1.10.27); fillClrLst5.9.4.8); fillRef5.1.4.2.10); folHlink5.1.4.1.15); fontRef5.1.4.1.17); from4.6.44); glow5.1.10.32); gs5.1.10.36); highlight5.1.5.3.4); hlink5.1.4.1.19); innerShdw5.1.10.40); linClrLst5.9.4.9); lnRef5.1.4.2.19); lt15.1.4.1.22); lt25.1.4.1.23); outerShdw5.1.10.45); penClr4.3.1.21); prstShdw5.1.10.49); solidFill5.1.10.54); tcTxStyle5.1.4.2.30); to4.6.90); txEffectClrLst5.9.4.12); txFillClrLst5.9.4.13); txLinClrLst5.9.4.14)

 

Child Elements

Subclause

alpha (Alpha)

§5.1.2.2.1

alphaMod (Alpha Modulation)

§5.1.2.2.2

alphaOff (Alpha Offset)

§5.1.2.2.3

blue (Blue)

§5.1.2.2.4

blueMod (Blue Modification)

§5.1.2.2.5

blueOff (Blue Offset)

§5.1.2.2.6

comp (Complement)

§5.1.2.2.7

gamma (Gamma)

§5.1.2.2.8

gray (Gray)

§5.1.2.2.9

green (Green)

§5.1.2.2.10

greenMod (Green Modification)

§5.1.2.2.11

greenOff (Green Offset)

§5.1.2.2.12

hue (Hue)

§5.1.2.2.14

hueMod (Hue Modulate)

§5.1.2.2.15

hueOff (Hue Offset)

§5.1.2.2.16

inv (Inverse)

§5.1.2.2.17

invGamma (Inverse Gamma)

§5.1.2.2.18

lum (Luminance)

§5.1.2.2.19

lumMod (Luminance Modulation)

§5.1.2.2.20

lumOff (Luminance Offset)

§5.1.2.2.21

red (Red)

§5.1.2.2.23

redMod (Red Modulation)

§5.1.2.2.24

redOff (Red Offset)

§5.1.2.2.25

sat (Saturation)

§5.1.2.2.26

satMod (Saturation Modulation)

§5.1.2.2.27

satOff (Saturation Offset)

§5.1.2.2.28

shade (Shade)

§5.1.2.2.31

tint (Tint)

§5.1.2.2.34

 

Attributes

Description

b (Blue)

Specifies the percentage of blue.

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

g (Green)

Specifies the percentage of green.

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

r (Red)

Specifies the percentage of red.

 

The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_ScRgbColor">

   <sequence>

   <group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/>

   </sequence>

   <attribute name="r" type="ST_Percentage" use="required"/>

   <attribute name="g" type="ST_Percentage" use="required"/>

   <attribute name="b" type="ST_Percentage" use="required"/>

</complexType>

shade (Shade)

This element specifies a darker version of its input color. A 10% shade is 10% of the input color combined with 90% black.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the opacity as expressed by a percentage value.

 

[Example: The following represents a green solid fill which is 50% opaque

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:alpha val="50000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_PositiveFixedPercentage simple type (§5.1.12.45).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_PositiveFixedPercentage">

   <attribute name="val" type="ST_PositiveFixedPercentage" use="required"/>

</complexType>

srgbClr (RGB Color Model - Hex Variant)

This element specifies a color using the red, green, blue RGB color model. Red, green, and blue is expressed as sequence of hex digits, RRGGBB. A perceptual gamma of 2.2 is used.

Specifies the level of red as expressed by a percentage offset increase or decrease relative to the input color.

[Example: The following represent the same color

<a:solidFill>
<a:scrgbClr r="50000" g="50000" b="50000"/>
</a:solidFill>
<a:solidFill>
<a:srgbClr
val="BCBCBC"/>
</a:solidFill>

end example]

Parent Elements

accent15.1.4.1.1); accent25.1.4.1.2); accent35.1.4.1.3); accent45.1.4.1.4); accent55.1.4.1.5); accent65.1.4.1.6); alphaInv5.1.10.4); bgClr5.1.10.10); bgRef4.4.1.3); buClr5.1.5.4.4); clrFrom5.1.10.17); clrMru4.3.1.4); clrRepl5.1.10.18); clrTo5.1.10.19); clrVal4.6.27); contourClr5.1.7.6); custClr5.1.4.1.8); dk15.1.4.1.9); dk25.1.4.1.10); duotone5.1.10.23); effectClrLst5.9.4.7); effectRef5.1.4.2.8); extrusionClr5.1.7.7); fgClr5.1.10.27); fillClrLst5.9.4.8); fillRef5.1.4.2.10); folHlink5.1.4.1.15); fontRef5.1.4.1.17); from4.6.44); glow5.1.10.32); gs5.1.10.36); highlight5.1.5.3.4); hlink5.1.4.1.19); innerShdw5.1.10.40); linClrLst5.9.4.9); lnRef5.1.4.2.19); lt15.1.4.1.22); lt25.1.4.1.23); outerShdw5.1.10.45); penClr4.3.1.21); prstShdw5.1.10.49); solidFill5.1.10.54); tcTxStyle5.1.4.2.30); to4.6.90); txEffectClrLst5.9.4.12); txFillClrLst5.9.4.13); txLinClrLst5.9.4.14)

 

Child Elements

Subclause

alpha (Alpha)

§5.1.2.2.1

alphaMod (Alpha Modulation)

§5.1.2.2.2

alphaOff (Alpha Offset)

§5.1.2.2.3

blue (Blue)

§5.1.2.2.4

blueMod (Blue Modification)

§5.1.2.2.5

blueOff (Blue Offset)

§5.1.2.2.6

comp (Complement)

§5.1.2.2.7

gamma (Gamma)

§5.1.2.2.8

gray (Gray)

§5.1.2.2.9

green (Green)

§5.1.2.2.10

greenMod (Green Modification)

§5.1.2.2.11

greenOff (Green Offset)

§5.1.2.2.12

hue (Hue)

§5.1.2.2.14

hueMod (Hue Modulate)

§5.1.2.2.15

hueOff (Hue Offset)

§5.1.2.2.16

inv (Inverse)

§5.1.2.2.17

invGamma (Inverse Gamma)

§5.1.2.2.18

lum (Luminance)

§5.1.2.2.19

lumMod (Luminance Modulation)

§5.1.2.2.20

lumOff (Luminance Offset)

§5.1.2.2.21

red (Red)

§5.1.2.2.23

redMod (Red Modulation)

§5.1.2.2.24

redOff (Red Offset)

§5.1.2.2.25

sat (Saturation)

§5.1.2.2.26

satMod (Saturation Modulation)

§5.1.2.2.27

satOff (Saturation Offset)

§5.1.2.2.28

shade (Shade)

§5.1.2.2.31

tint (Tint)

§5.1.2.2.34

 

Attributes

Description

val (Value)

The actual color value. Expressed as a sequence of hex digits RRGGBB.

 

The possible values for this attribute are defined by the ST_HexBinary3 simple type (§5.1.12.28).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_SRgbColor">

   <sequence>

   <group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/>

   </sequence>

   <attribute name="val" type="ST_HexBinary3" use="required"/>

</complexType>

sysClr (System Color)

This element specifies a color bound to predefined operating system elements.

[Example: The following represents the default color used for displaying text in a window.

<a:solidFill>
<a:sysClr
val="windowText"/>
</a:solidFill>

end example]

Parent Elements

accent15.1.4.1.1); accent25.1.4.1.2); accent35.1.4.1.3); accent45.1.4.1.4); accent55.1.4.1.5); accent65.1.4.1.6); alphaInv5.1.10.4); bgClr5.1.10.10); bgRef4.4.1.3); buClr5.1.5.4.4); clrFrom5.1.10.17); clrMru4.3.1.4); clrRepl5.1.10.18); clrTo5.1.10.19); clrVal4.6.27); contourClr5.1.7.6); custClr5.1.4.1.8); dk15.1.4.1.9); dk25.1.4.1.10); duotone5.1.10.23); effectClrLst5.9.4.7); effectRef5.1.4.2.8); extrusionClr5.1.7.7); fgClr5.1.10.27); fillClrLst5.9.4.8); fillRef5.1.4.2.10); folHlink5.1.4.1.15); fontRef5.1.4.1.17); from4.6.44); glow5.1.10.32); gs5.1.10.36); highlight5.1.5.3.4); hlink5.1.4.1.19); innerShdw5.1.10.40); linClrLst5.9.4.9); lnRef5.1.4.2.19); lt15.1.4.1.22); lt25.1.4.1.23); outerShdw5.1.10.45); penClr4.3.1.21); prstShdw5.1.10.49); solidFill5.1.10.54); tcTxStyle5.1.4.2.30); to4.6.90); txEffectClrLst5.9.4.12); txFillClrLst5.9.4.13); txLinClrLst5.9.4.14)

 

Child Elements

Subclause

alpha (Alpha)

§5.1.2.2.1

alphaMod (Alpha Modulation)

§5.1.2.2.2

alphaOff (Alpha Offset)

§5.1.2.2.3

blue (Blue)

§5.1.2.2.4

blueMod (Blue Modification)

§5.1.2.2.5

blueOff (Blue Offset)

§5.1.2.2.6

comp (Complement)

§5.1.2.2.7

gamma (Gamma)

§5.1.2.2.8

gray (Gray)

§5.1.2.2.9

green (Green)

§5.1.2.2.10

greenMod (Green Modification)

§5.1.2.2.11

greenOff (Green Offset)

§5.1.2.2.12

hue (Hue)

§5.1.2.2.14

hueMod (Hue Modulate)

§5.1.2.2.15

hueOff (Hue Offset)

§5.1.2.2.16

inv (Inverse)

§5.1.2.2.17

invGamma (Inverse Gamma)

§5.1.2.2.18

lum (Luminance)

§5.1.2.2.19

lumMod (Luminance Modulation)

§5.1.2.2.20

lumOff (Luminance Offset)

§5.1.2.2.21

red (Red)

§5.1.2.2.23

redMod (Red Modulation)

§5.1.2.2.24

redOff (Red Offset)

§5.1.2.2.25

sat (Saturation)

§5.1.2.2.26

satMod (Saturation Modulation)

§5.1.2.2.27

satOff (Saturation Offset)

§5.1.2.2.28

shade (Shade)

§5.1.2.2.31

tint (Tint)

§5.1.2.2.34

 

Attributes

Description

lastClr (Last Color)

Specifies the color value that was last computed by the generating application.

 

The possible values for this attribute are defined by the ST_HexBinary3 simple type (§5.1.12.28).

val (Value)

Specifies the system color value.

 

The possible values for this attribute are defined by the ST_SystemColorVal simple type (§5.1.12.58).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_SystemColor">

   <sequence>

   <group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/>

   </sequence>

   <attribute name="val" type="ST_SystemColorVal" use="required"/>

   <attribute name="lastClr" type="ST_HexBinary3" use="optional"/>

</complexType>

tint (Tint)

This element specifies a lighter version of its input color. A 10% tint is 10% of the input color combined with 90% white.

Parent Elements

hslClr5.1.2.2.13); prstClr5.1.2.2.22); schemeClr5.1.2.2.29); scrgbClr5.1.2.2.30); srgbClr5.1.2.2.32); sysClr5.1.2.2.33)

 

Attributes

Description

val (Value)

Specifies the opacity as expressed by a percentage value.

 

[Example: The following represents a green solid fill which is 50% opaque

 

<a:solidFill>
<a:srgbClr val="00FF00">
<a:alpha val="50000"/>
</a:srgbClr>
</a:solidFill>

 

end example]

 

The possible values for this attribute are defined by the ST_PositiveFixedPercentage simple type (§5.1.12.45).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_PositiveFixedPercentage">

   <attribute name="val" type="ST_PositiveFixedPercentage" use="required"/>

</complexType>