过滤器
用于将对比度过滤器应用于元素的实用程序。
使用contrast-{amount?}
实用程序来控制元素的对比度。
contrast-50
contrast-100
contrast-125
contrast-200
<div class="contrast-50 ...">
<!-- ... -->
</div>
<div class="contrast-100 ...">
<!-- ... -->
</div>
<div class="contrast-125 ...">
<!-- ... -->
</div>
<div class="contrast-200 ...">
<!-- ... -->
</div>
要一次性移除元素上的所有过滤器,请使用 filter-none
实用程序
<div class="blur-md invert contrast-125 md:filter-none">
<!-- ... -->
</div>
当您想要有条件地移除过滤器时,这很有用,例如在悬停或特定断点时。
Tailwind 允许您使用变体修饰符在不同的状态下有条件地应用实用程序类。例如,使用 hover:contrast-150
仅在悬停时应用 contrast-150
实用程序。
<div class="contrast-125 hover:contrast-150">
<!-- ... -->
</div>
有关所有可用状态修饰符的完整列表,请查看 悬停、焦点和其它状态 文档。
您也可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、 prefers-reduced-motion 等等。例如,使用 md:contrast-150
仅在中等屏幕尺寸及以上应用 contrast-150
实用程序。
<div class="contrast-125 md:contrast-150">
<!-- ... -->
</div>
要了解更多信息,请查看有关 响应式设计、暗黑模式 和 其他媒体查询修饰符 的文档。
默认情况下,Tailwind 包含一些通用的 contrast
实用程序。您可以通过编辑 theme.contrast
或 theme.extend.contrast
在您的 tailwind.config.js
文件中自定义这些值。
module.exports = {
theme: {
extend: {
contrast: {
25: '.25',
}
}
}
}
了解有关在 主题自定义 文档中自定义默认主题的更多信息。
如果您需要使用一个不适合包含在主题中的 contrast
值,请使用方括号使用任何任意值动态生成属性。
<div class="contrast-[.25]">
<!-- ... -->
</div>
了解有关在 任意值 文档中使用任意值支持的更多信息。