Back to Tailwindcss

Backdrop Filter Hue Rotate

src/docs/backdrop-filter-hue-rotate.mdx

latest7.2 KB
Original Source

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>);"], ]} />

Examples

Basic example

Use utilities like backdrop-hue-rotate-90 and backdrop-hue-rotate-180 to rotate the hue of an element's backdrop:

<Figure> <Example padding={false}> { <div className="flex scroll-p-8 justify-start overflow-scroll sm:block sm:overflow-visible"> <div className="flex shrink-0 items-center justify-around gap-6 p-8 font-mono font-bold sm:gap-4"> <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 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>

html
<!-- [!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>
</Figure>

Using negative values

Use utilities like -backdrop-hue-rotate-90 and -backdrop-hue-rotate-180 to set a negative backdrop hue rotation value:

<Figure> <Example padding={false}> { <div className="flex scroll-p-8 justify-start overflow-scroll sm:block sm:overflow-visible"> <div className="flex shrink-0 items-center justify-around gap-6 p-8 font-mono font-bold sm:gap-4"> <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-15 </p> <div className="relative"> <div className="absolute inset-6 size-20 bg-white/30 -backdrop-hue-rotate-15"></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-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>

html
<!-- [!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>
</Figure>

Using a custom value

<UsingACustomValue utility="backdrop-hue-rotate" value="3.142rad" name="backdrop hue rotation" variable="backdrop-hue-rotation" />

Responsive design

<ResponsiveDesign property="backdrop-filter: hue-rotate()" defaultClass="backdrop-hue-rotate-15" featuredClass="backdrop-hue-rotate-0" />