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

Parent Elements

<accent1>5.1.4.1.1); <accent2>5.1.4.1.2); <accent3>5.1.4.1.3); <accent4>5.1.4.1.4); <accent5>5.1.4.1.5); <accent6>5.1.4.1.6); <alphaInv>5.1.10.4); <bgClr>5.1.10.10); <bgRef>4.4.1.3); <buClr>5.1.5.4.4); <clrFrom>5.1.10.17); <clrMru>4.3.1.4); <clrRepl>5.1.10.18); <clrTo>5.1.10.19); <clrVal>4.6.27); <contourClr>5.1.7.6); <custClr>5.1.4.1.8); <dk1>5.1.4.1.9); <dk2>5.1.4.1.10); <duotone>5.1.10.23); <effectClrLst>5.9.4.7); <effectRef>5.1.4.2.8); <extrusionClr>5.1.7.7); <fgClr>5.1.10.27); <fillClrLst>5.9.4.8); <fillRef>5.1.4.2.10); <folHlink>5.1.4.1.15); <fontRef>5.1.4.1.17); <from>4.6.44); <glow>5.1.10.32); <gs>5.1.10.36); <highlight>5.1.5.3.4); <hlink>5.1.4.1.19); <innerShdw>5.1.10.40); <linClrLst>5.9.4.9); <lnRef>5.1.4.2.19); <lt1>5.1.4.1.22); <lt2>5.1.4.1.23); <outerShdw>5.1.10.45); <penClr>4.3.1.21); <prstShdw>5.1.10.49); <solidFill>5.1.10.54); <tcTxStyle>5.1.4.2.30); <to>4.6.90); <txEffectClrLst>5.9.4.12); <txFillClrLst>5.9.4.13); <txLinClrLst>5.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>