Tailwind CSS Saturate Last Updated : 23 Jul, 2025 Comments Improve Suggest changes 2 Likes Like Report The Tailwind CSS saturate class is an inbuilt function that is used to super-saturate or desaturate the input image. In CSS, we do that by using the CSS saturate() Function. Tailwind CSS newly added feature brightness in 2.1 version. Saturate Classes: saturate-0: This class used to set the saturate value, equivalent to CSS saturate(0).saturate-50: This class used to set the saturate value, equivalent to CSS saturate(50).saturate-100: This class used to set the saturate value, equivalent to CSS saturate(100).saturate-150: This class used to set the saturate value, equivalent to CSS saturate(150).saturate-200: This class used to set the saturate value, equivalent to CSS saturate(200). Syntax: <element class="filter saturate-{amount}">..</element> Example: HTML <!DOCTYPE html> <html> <head> <link href= "https://unpkg.com/[email protected]/dist/tailwind.min.css" rel="stylesheet"> </head> <body class="text-center mx-4 space-y-2"> <h1 class="text-green-600 text-5xl font-bold"> GeeksforGeeks </h1> <b>Tailwind CSS Saturate Class</b> <div class="grid grid-flow-col text-center p-4"> <img class="rounded-lg filter saturate-0" src= "https://media.geeksforgeeks.org/wp-content/uploads/20210604014825/QNHrwL2q.jpg" alt="image"> <img class="rounded-lg filter saturate-50" src= "https://media.geeksforgeeks.org/wp-content/uploads/20210604014825/QNHrwL2q.jpg" alt="image"> <img class="rounded-lg filter saturate-75" src= "https://media.geeksforgeeks.org/wp-content/uploads/20210604014825/QNHrwL2q.jpg" alt="image"> <img class="rounded-lg filter saturate-110" src= "https://media.geeksforgeeks.org/wp-content/uploads/20210604014825/QNHrwL2q.jpg" alt="image"> <img class="rounded-lg filter saturate-200" src= "https://media.geeksforgeeks.org/wp-content/uploads/20210604014825/QNHrwL2q.jpg" alt="image"> </div> </body> </html> Output: Comment S skyridetim Follow 2 Improve S skyridetim Follow 2 Improve Article Tags : Web Technologies CSS Tailwind CSS Tailwind-Filters Explore CSS Introduction 3 min read CSS Syntax 2 min read CSS Selectors 6 min read CSS Comments 2 min read CSS Colors 5 min read CSS Borders 5 min read CSS Margins 4 min read CSS Height and Width 4 min read CSS Outline 4 min read CSS Fonts 4 min read Like