src/docs/backdrop-filter-hue-rotate.mdx
import { ApiTable } from "@/components/api-table"; import { Example } from "@/components/example"; import { Figure } from "@/components/figure"; import { ResponsiveDesign, UsingACustomValue } from "@/components/content";
export const title = "backdrop-filter: hue-rotate()"; export const description = "Utilities for applying backdrop hue-rotate filters to an element.";
<ApiTable rows={[ ["backdrop-hue-rotate-<number>", "backdrop-filter: hue-rotate(<number>deg);"], ["-backdrop-hue-rotate-<number>", "backdrop-filter: hue-rotate(calc(<number>deg * -1));"], ["backdrop-hue-rotate-(<custom-property>)", "backdrop-filter: hue-rotate(var(<custom-property>));"], ["backdrop-hue-rotate-[<value>]", "backdrop-filter: hue-rotate(<value>);"], ]} />
Use utilities like backdrop-hue-rotate-90 and backdrop-hue-rotate-180 to rotate the hue of an element's backdrop:
<div className="absolute inset-0 rounded-lg ring-1 ring-black/10 ring-inset"></div>
</div>
</div>
<div className="flex shrink-0 flex-col items-center">
<p className="mb-3 text-center font-mono text-xs font-medium text-gray-500 dark:text-gray-400">
backdrop-hue-rotate-180
</p>
<div className="relative">
<div className="absolute inset-6 size-20 bg-white/30 backdrop-hue-rotate-180"></div>
<div className="absolute inset-0 rounded-lg ring-1 ring-black/10 ring-inset"></div>
</div>
</div>
<div className="flex shrink-0 flex-col items-center">
<p className="mb-3 text-center font-mono text-xs font-medium text-gray-500 dark:text-gray-400">
backdrop-hue-rotate-270
</p>
<div className="relative">
<div className="absolute inset-6 size-20 bg-white/30 backdrop-hue-rotate-270"></div>
<div className="absolute inset-0 rounded-lg ring-1 ring-black/10 ring-inset"></div>
</div>
</div>
</div>
</div>
} </Example>
<!-- [!code classes:backdrop-hue-rotate-90,backdrop-hue-rotate-180,backdrop-hue-rotate-270] -->
<div class="bg-[url(/img/mountains.jpg)]">
<div class="bg-white/30 backdrop-hue-rotate-90 ..."></div>
</div>
<div class="bg-[url(/img/mountains.jpg)]">
<div class="bg-white/30 backdrop-hue-rotate-180 ..."></div>
</div>
<div class="bg-[url(/img/mountains.jpg)]">
<div class="bg-white/30 backdrop-hue-rotate-270 ..."></div>
</div>
Use utilities like -backdrop-hue-rotate-90 and -backdrop-hue-rotate-180 to set a negative backdrop hue rotation value:
<div className="absolute inset-0 rounded-lg ring-1 ring-black/10 ring-inset"></div>
</div>
</div>
<div className="flex shrink-0 flex-col items-center">
<p className="mb-3 text-center font-mono text-xs font-medium text-gray-500 dark:text-gray-400">
-backdrop-hue-rotate-45
</p>
<div className="relative">
<div className="absolute inset-6 size-20 bg-white/30 -backdrop-hue-rotate-45"></div>
<div className="absolute inset-0 rounded-lg ring-1 ring-black/10 ring-inset"></div>
</div>
</div>
<div className="flex shrink-0 flex-col items-center">
<p className="mb-3 text-center font-mono text-xs font-medium text-gray-500 dark:text-gray-400">
-backdrop-hue-rotate-90
</p>
<div className="relative">
<div className="absolute inset-6 size-20 bg-white/30 -backdrop-hue-rotate-90"></div>
<div className="absolute inset-0 rounded-lg ring-1 ring-black/10 ring-inset"></div>
</div>
</div>
</div>
</div>
} </Example>
<!-- [!code classes:-backdrop-hue-rotate-15,-backdrop-hue-rotate-45,-backdrop-hue-rotate-90] -->
<div class="bg-[url(/img/mountains.jpg)]">
<div class="bg-white/30 -backdrop-hue-rotate-15 ..."></div>
</div>
<div class="bg-[url(/img/mountains.jpg)]">
<div class="bg-white/30 -backdrop-hue-rotate-45 ..."></div>
</div>
<div class="bg-[url(/img/mountains.jpg)]">
<div class="bg-white/30 -backdrop-hue-rotate-90 ..."></div>
</div>
<UsingACustomValue utility="backdrop-hue-rotate" value="3.142rad" name="backdrop hue rotation" variable="backdrop-hue-rotation" />
<ResponsiveDesign property="backdrop-filter: hue-rotate()" defaultClass="backdrop-hue-rotate-15" featuredClass="backdrop-hue-rotate-0" />