Open In App

CSS hue-rotate() Function

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
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
        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

Last Updated : 07 Jun, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads