Utilities for applying saturation filters to an element.
Use the saturate-{amount}
utilities alongside the filter
utility to control an element’s saturation.
<div class="filter saturate-150 ...">
<!-- ... -->
</div>
To control an element’s saturation at a specific breakpoint, add a {screen}:
prefix to any existing saturate utility. For example, use md:saturate-150
to apply the saturate-150
utility at only medium screen sizes and above.
<div class="filter saturate-50 md:saturate-150 ...">
<!-- ... -->
</div>
For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.
You can customize which saturate
utilities are generated using the saturate
key in the theme
section of your tailwind.config.js
file.
// tailwind.config.js
module.exports = {
theme: {
+ extend: {
+ saturate: {
+ 25: '.25',
+ 75: '.75',
+ }
+ }
}
}
Learn more about customizing the default theme in the theme customization documentation.
默认情况下, 针对 saturate 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 saturate
属性来控制为 saturate 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ saturate: ['hover', 'focus'],
}
}
}
如果您不打算在您的项目中使用 saturate 功能,您可以通过在配置文件的 corePlugins
部分将 saturate
属性设置为 false
来完全禁用它们:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ saturate: false,
}
}