Invert

Tailwind CSS version

v2.1+

Utilities for applying invert filters to an element.

Default class reference

Class
Properties
invert-0—tw-invert: invert(0);
invert—tw-invert: invert(1);

Usage

Use the invert and invert-0 utilities alongside the filter utility to whether an element should be rendered with inverted colors or normally.

  1. <div class="filter invert ...">
  2. <!-- ... -->
  3. </div>

Responsive

To control an element’s invert filter at a specific breakpoint, add a {screen}: prefix to any existing invert utility. For example, use md:invert-0 to apply the invert-0 utility at only medium screen sizes and above.

  1. <div class="filter invert md:invert-0 ...">
  2. <!-- ... -->
  3. </div>

For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.

Customizing

You can customize which invert utilities are generated using the invert key in the theme section of your tailwind.config.js file.

  1. // tailwind.config.js
  2. module.exports = {
  3. theme: {
  4. + extend: {
  5. + invert: {
  6. + 25: '.25',
  7. + 50: '.5',
  8. + 75: '.75',
  9. + }
  10. + }
  11. }
  12. }

Learn more about customizing the default theme in the theme customization documentation.

Variants

By default, only responsive variants are generated for invert utilities.

You can control which variants are generated for the invert utilities by modifying the invert property in the variants section of your tailwind.config.js file.

For example, this config will also generate hover and focus variants:

  1. // tailwind.config.js
  2. module.exports = {
  3. variants: {
  4. extend: {
  5. // ...
  6. + invert: ['hover', 'focus'],
  7. }
  8. }
  9. }

Disabling

If you don’t plan to use the invert utilities in your project, you can disable them entirely by setting the invert property to false in the corePlugins section of your config file:

  1. // tailwind.config.js
  2. module.exports = {
  3. corePlugins: {
  4. // ...
  5. + invert: false,
  6. }
  7. }

←Hue Rotate Saturate→

Edit this page on GitHub