Open In App

CSS hue-rotate() Function

Last Updated : 07 Jun, 2023
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report

The hue-rotate() function is an inbuilt function which is used to apply a filter to the image to set the hue rotation of the image. 

Syntax:

hue-rotate( angle )

Parameters: This function accepts single parameter angle which holds the angle of hue-rotation. A positive hue angle increases the hue value, while a negative angle decreases the hue value. 

Below example illustrates the hue-rotate() function in CSS: 

Example: 

html
<!DOCTYPE html> 
<html> 

<head> 
    <title>CSS hue-rotate() Function</title> 
    
    <style>
        h1 {
            color:green;
        }
        body {
            text-align:center;
        }
        .hue_rotate_effect {
            filter: hue-rotate(100deg);
        }
    </style>
</head> 

<body> 
    <h1>GeeksforGeeks</h1> 
    
    <h2>CSS hue-rotate() function</h2>
    
    <img class="hue_rotate_effect" src= 
"https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png"
        alt="GeeksforGeeks logo"> 
</body> 

</html>                    

Output:

  

Supported Browsers: The browsers supported by hue-rotate() function are listed below:

  • Google Chrome 18
  • Edge 12
  • Firefox 35
  • Safari 6
  • Opera 15

Similar Reads