Translucent background on Vision Pro/Safari

97 views Asked by At

I'd like to make a website that seamlessly blends with Vision Pro UI. I want the background of my website to look similar to the the system settings windows. Does anyone know if it's possible to make a truly transparent/translucent background that will inherit the blurred look on the OS level?

I've already tried background: transparent.

1

There are 1 answers

1
Mohammad Saad Qasim On

Yes, you can use backdrop filter on the body(blur in value) with the background color in rgba like this:

.my-class {
   backdrop-filter: blur(10px);
}