你正在瀏覽的是 Tailwind CSS v2. 的技術文件
Tailwind CSS 的 GitHub

Hue Rotate

Tailwind CSS version
v2.1+

Utilities for applying hue-rotate filters to an element.

Default class reference

Class
屬性
-hue-rotate-180--tw-hue-rotate: hue-rotate(-180deg);
-hue-rotate-90--tw-hue-rotate: hue-rotate(-90deg);
-hue-rotate-60--tw-hue-rotate: hue-rotate(-60deg);
-hue-rotate-30--tw-hue-rotate: hue-rotate(-30deg);
-hue-rotate-15--tw-hue-rotate: hue-rotate(-15deg);
hue-rotate-0--tw-hue-rotate: hue-rotate(0deg);
hue-rotate-15--tw-hue-rotate: hue-rotate(15deg);
hue-rotate-30--tw-hue-rotate: hue-rotate(30deg);
hue-rotate-60--tw-hue-rotate: hue-rotate(60deg);
hue-rotate-90--tw-hue-rotate: hue-rotate(90deg);
hue-rotate-180--tw-hue-rotate: hue-rotate(180deg);

Usage

Use the hue-rotate-{amount} utilities alongside the filter utility to rotate the hue of an element.

<div class="filter hue-rotate-15 ...">
  <!-- ... -->
</div>

Responsive

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

<div class="filter hue-rotate-15 md:hue-rotate-60 ...">
  <!-- ... -->
</div>

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

Customizing

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

  // tailwind.config.js
  module.exports = {
    theme: {
+     extend: {
+       hueRotate: {
+         '-270': '-270deg',
+         270: '270deg',
+       }
+     }
    }
  }

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

Variants

默認情況下, 只有 響應式 的 hue-rotate 變化模式 (variants) 會產生。

tailwind.config.jsvariants 區塊中變更 hueRotate 屬性來決定有哪些變化模式會生成。

舉個例子來說,這個設定將會生成 響應式 和 hover 的變化模式。

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

Disabling

如果你不打算在專案中使用 hue-rotate 功能,可以在你的設定檔裡的 corePlugins 屬性中將 hueRotate 設定為 false 來停用功能:

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