files/en-us/web/svg/reference/attribute/values/index.md
The values attribute has different meanings, depending upon the context where it's used, either it defines a sequence of values used over the course of an animation, or it's a list of numbers for a color matrix, which is interpreted differently depending on the type of color change to be performed.
You can use this attribute with the following SVG elements:
For {{SVGElement("animate")}}, {{SVGElement("animateMotion")}}, and {{SVGElement("animateTransform")}}, values is a list of values defining the sequence of values over the course of the animation. If this attribute is specified, any {{SVGAttr("from")}}, {{SVGAttr("to")}}, and {{SVGAttr("by")}} attribute values set on the element are ignored.
<list-of-values>
For the {{SVGElement("feColorMatrix")}} element, values is a list of numbers interpreted differently depending on the value of the {{SVGAttr("type")}} attribute.
<list-of-numbers>
type attribute:
type="matrix", values is a list of 20 matrix values (a00 a01 a02 a03 a04 a10 a11 … a34), separated by whitespace and/or a comma.type="saturate", values is a single real number value (0 to 1).type="hueRotate", values is a single one real number value (degrees).type="luminanceToAlpha", values is not applicable.{{Specifications}}