You're looking at the documentation for Tailwind CSS v2.
Tailwind CSS on GitHub

Backdrop Contrast

Tailwind CSS version
v2.1+

Utilities for applying backdrop contrast filters to an element.

Default class reference

Class
Properties
backdrop-contrast-0--tw-backdrop-contrast: contrast(0);
backdrop-contrast-50--tw-backdrop-contrast: contrast(.5);
backdrop-contrast-75--tw-backdrop-contrast: contrast(.75);
backdrop-contrast-100--tw-backdrop-contrast: contrast(1);
backdrop-contrast-125--tw-backdrop-contrast: contrast(1.25);
backdrop-contrast-150--tw-backdrop-contrast: contrast(1.5);
backdrop-contrast-200--tw-backdrop-contrast: contrast(2);

Usage

Use the backdrop-contrast-{amount?} utilities alongside the backdrop-filter utility to control an element’s backdrop contrast.

<div class="backdrop-filter backdrop-contrast-125 ...">
  <!-- ... -->
</div>

Responsive

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

<div class="backdrop-filter backdrop-contrast-110 md:backdrop-contrast-150 ...">
  <!-- ... -->
</div>

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

Customizing

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

  // tailwind.config.js
  module.exports = {
    theme: {
+     extend: {
+       backdropContrast: {
+         25: '.25',
+       }
+     }
    }
  }

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

Backdrop Contrast Scale

You can customize the values for the backdrop-contrast filter in your Tailwind config.

  // tailwind.config.js
  module.exports = {
    theme: {
      backdropContrast: {
        0: '0',
+       25: '.25',
        50: '.5',
        75: '.75',
        100: '1',
        125: '1.25',
        150: '1.5',
        200: '2',
      }
    }
  }

Variants

By default, only responsive variants are generated for backdrop contrast utilities.

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

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

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
+       backdropContrast: ['hover', 'focus'],
      }
    }
  }

Disabling

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

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
+     backdropContrast: false,
    }
  }