hue-rotate()
The hue-rotate() CSS function rotates the hue of an element and its contents. Its result is a <filter-function>.
Syntax
hue-rotate(angle)
Parameters
angle-
The relative change in hue of the input sample, specified as an
<angle>. A value of0degleaves the input unchanged. A positive hue rotation increases the hue value, while a negative rotation decreases the hue value. The lacuna value for interpolation is0. There is no minimum or maximum value;hue-rotate(Ndeg)evaluates toNmodulo 360.
Examples
Examples of correct values for hue-rotate
hue-rotate(-90deg) /* Same as 270deg rotation */ hue-rotate(0deg) /* No effect */ hue-rotate(90deg) /* 90deg rotation */ hue-rotate(.5turn) /* 180deg rotation */ hue-rotate(405deg) /* Same as 45deg rotation */
Specifications
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
hue-rotate() |
18 |
12 |
35 |
No |
15 |
6 |
4.4 |
53 |
35 |
14 |
6 |
6.0 |
See also
<filter-function>blur()brightness()contrast()drop-shadow()grayscale()invert()opacity()saturate()sepia()
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/filter-function/hue-rotate()