Yesterday, 12:24 PM
(This post was last modified: Yesterday, 12:30 PM by Ted Hinklater. Edited 2 times in total.)
It already is?
![[Image: Screenshot-from-2025-11-06-12-13-12.png]](https://i.ibb.co/PZfsHdFC/Screenshot-from-2025-11-06-12-13-12.png)
but if you're just asking in general, this theme uses a ::before layer over .backgroundContainer.withBackdrop with css that blurs anything beneath it:
You can do it that way or you can apply a blur to the backdrop itself on the homepage
![[Image: Screenshot-from-2025-11-06-12-13-12.png]](https://i.ibb.co/PZfsHdFC/Screenshot-from-2025-11-06-12-13-12.png)
but if you're just asking in general, this theme uses a ::before layer over .backgroundContainer.withBackdrop with css that blurs anything beneath it:
Code:
#reactRoot:not(:has(.skinHeader.semiTransparent)) > .backgroundContainer.withBackdrop::before {
backdrop-filter: blur(30px) saturate(80%) brightness(60%);
- webkit-backdrop-filter: blur(30px) saturate(80%) brightness(60%);
}You can do it that way or you can apply a blur to the backdrop itself on the homepage
Code:
#reactRoot:not(:has(.skinHeader.semiTransparent)) > .backdropContainer > .backdropImage {
filter: blur(30px);
}
