Tailwind CSS on GitHub

Sepia

Tailwind CSS version
v2.1+

Utilities for applying sepia filters to an element.

Default class reference

Class
Properties
sepia-0--tw-sepia: sepia(0);
sepia--tw-sepia: sepia(1);

Usage

Use the sepia and sepia-0 utilities alongside the filter utility to whether an element should be rendered as sepia or in full color.

<div class="filter sepia ...">
  <!-- ... -->
</div>

Responsive

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

<div class="filter sepia md:sepia-0 ...">
  <!-- ... -->
</div>

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

Customizing

Variants

默认情况下, 针对 sepia 功能类,只生成 responsive 变体。

您可以通过修改您的 tailwind.config.js 文件中的 variants 部分中的 sepia 属性来控制为 sepia 功能生成哪些变体。

例如,这个配置将生成 hover and focus 变体:

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

Disabling

如果您不打算在您的项目中使用 sepia 功能,您可以通过在配置文件的 corePlugins 部分将 sepia property to false in the corePlugins section of your config file:

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