Skip to main content
Back to all tools

Glassmorphism Generator

Create frosted glass UI effects with backdrop blur, opacity, and saturation controls.

10px
20%
30%
180%
Preview bg:
drag to pan
css
.glass {
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 16px;
}